network.bsky.jetstream.getImportStatus
Report the status of a timestamp-import job: lifecycle state, current phase, per-phase progress, and (on completion) the parse/mutation totals. With no job parameter, reports the current or most recent job. Bearer-token gated: without a configured token the endpoint always returns 401.
class atproto_client.models.network.bsky.jetstream.get_import_status. Params
Bases: ParamsModelBase
Parameters model for network.bsky.jetstream.getImportStatus .
field job : str | None = None
class atproto_client.models.network.bsky.jetstream.get_import_status. ParamsDict
Bases: TypedDict
job : NotRequired [ str | None ]
Job id returned by importTimestamps. When omitted, the current or most recent job is reported.
class atproto_client.models.network.bsky.jetstream.get_import_status. Response
Bases: ResponseModelBase
Output data model for network.bsky.jetstream.getImportStatus .
field bucketed : bool | None = None
Whether Phase A+B completed (the offset files are durable).
field error : str | None = None
Failure detail; present only when state is failed.
field finished_at : DateTime | None = None
Present only for a terminal job.
field job : str [Required]
Job id.
field phase : Literal [ 'parse_bucket' , 'apply' ] | str | None = None
field rows_corrupt_offset : int | None = None
Rows corrupt offset.
Constraints:
field rows_matched_all_versions : int | None = None
Rows matched all versions.
Constraints:
field rows_matched_specific : int | None = None
Rows matched specific.
Constraints:
field rows_mutated : int | None = None
Rows mutated.
Constraints:
field rows_rejected : int | None = None
Rows rejected.
Constraints:
field rows_total : int | None = None
Rows total.
Constraints:
field rows_valid : int | None = None
Rows valid.
Constraints:
field segments_applied : int | None = None
Segments processed so far in Phase C.
Constraints:
field segments_examined : int | None = None
Segments examined.
Constraints:
field segments_patched : int | None = None
Segments patched.
Constraints:
field segments_to_apply : int | None = None
Constraints:
field specific_cids_unmatched : int | None = None
Specific cids unmatched.
Constraints:
field state : Literal [ 'running' , 'complete' , 'failed' ] | str [Required]
Lifecycle state.
field submitted_at : DateTime | None = None
Submitted at.