Skip to main content
GET
Get export status

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

apiKey
string | null

Path Parameters

export_id
string
required

Response

Successful Response

Status of a durable CSV export job. Returned by the async create path (202), the status endpoint, and as each element of the list endpoint. status is one of queued/running/ completed/failed, or expired once a completed export passes its retention window (at which point download_url is null and the download route returns 410).

id
string
required

Unique export identifier.

Example:

"exp_2f0ce4cf"

status
string
required

queued | running | completed | failed | expired.

Example:

"completed"

batch_ids
string[]
required

Batch IDs included in this export.

Example:
status_url
string
required

Relative URL to poll this export's status.

Example:

"/place_enrichment/exports/exp_2f0ce4cf"

expired
boolean
required

True when a completed export has aged past its retention window.

Example:

false

batch_names
Batch Names · object

Best-effort {batch_id -> name} map; a batch id is omitted if its name could not be resolved.

Example:
created_at
string | null

ISO-8601 creation timestamp.

updated_at
string | null

ISO-8601 last-update timestamp.

download_url
string | null

Relative download URL; present only while status is completed and unexpired.

Example:

"/place_enrichment/exports/exp_2f0ce4cf/download"

error
string | null

Failure reason when status is failed.

metadata
Metadata · object | null

Worker-reported stats (row counts, per-stage timings) once available.