Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.getimmutable.dev/llms.txt

Use this file to discover all available pages before exploring further.

GET /api/v1/exports/

Retrieve the current status of an export.

Path Parameters

id
string
required
The export identifier.

Response

{
  "data": {
    "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"
    },
    "total_rows": 1247,
    "file_size": 84521,
    "download_url": "https://getimmutable.dev/api/v1/exports/exp_.../download?signature=...",
    "created_at": "2026-03-26T10:15:00Z",
    "expires_at": "2026-04-02T10:15:00Z"
  }
}

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"