Juno
API reference

Check export status

GET /v1/api/exports/{job_id} Requires export:read

Track an export started with Start an export. Poll until ready is true, then fetch the file from Download an export. failed means the export did not complete — start a new one.

Parameters

job_id
string

Responses

200 Successful Response
status
string

Derived export status: 'queued', 'running', 'completed', or 'failed'.

ready
boolean

True only when the artifact is downloadable from GET /v1/api/exports/{job_id}/download.

422 Validation Error
ValidationError[]
cURL
curl 'https://api.heyjuno.co/v1/api/exports/3fa85f64-5717-4562-b3fc-2c963f66afa6' \
  -H 'Authorization: Bearer $JUNO_API_KEY'
Example response
{
  "status": "string",
  "ready": true
}