Skip to main content
GET
/
v2
/
exports
/
{exportId}
Status
curl --request GET \
  --url https://api.bizzy.ai/v2/exports/{exportId} \
  --header 'Authorization: Bearer <token>'
{
    "id": "8817263",
    "name": "Example List export",
    "status": "AVAILABLE",
    "progress": 1,
    "url": "https://storage.googleapis.com/bizzy-exports/..."
}

Request

Path

exportId
string
required
Obfuscated exportId returned when queuing an export.

Response

id
string
Obfuscated exportId, same value as the exportId path parameter.
name
string
Name of the export.
status
string
One of PENDING, IN_PROGRESS, AVAILABLE, EXPIRED, FAILED, INSUFFICIENT_CREDITS or NO_RESULTS.
progress
number
Completion ratio between 0 and 1, rounded to two decimals.
url
string | null
Presigned download URL. Only present (non-null) when status is AVAILABLE.
{
    "id": "8817263",
    "name": "Example List export",
    "status": "AVAILABLE",
    "progress": 1,
    "url": "https://storage.googleapis.com/bizzy-exports/..."
}