Skip to main content

GET /api/v1/exports/

Retrieve the current status of an export.

Path Parameters

id
string
required
The export identifier.

Response

{
  "id": "exp_9c2f4a7b-1d3e-4f5a-8b6c-7d8e9f0a1b2c",
  "status": "completed",
  "filters": {
    "actor_id": "user_2hG9kLm",
    "from": "2026-03-01T00:00:00Z",
    "to": "2026-03-31T23:59:59Z"
  },
  "event_count": 1247,
  "created_at": "2026-03-26T10:15:00Z",
  "completed_at": "2026-03-26T10:15:34Z"
}

Status Values

StatusDescription
pendingExport is queued for processing.
processingExport is being generated.
completedExport is ready for download.
failedExport generation failed.

Examples

curl https://getimmutable.dev/api/v1/exports/exp_9c2f4a7b-1d3e-4f5a-8b6c-7d8e9f0a1b2c \
  -H "Authorization: Bearer imk_your_api_key_here"