curl --request GET \
--url https://api.snappy.com/v3/products/exports/{exportId} \
--header 'X-Api-Key: <api-key>'{
"exportId": "exp_abc123",
"status": "pending"
}Checks the status of an asynchronous export job.
Status transitions: pending → processing → completed | failed.
Completed jobs include a signed downloadUrl and expiresAt. Failed
jobs include an error message.
curl --request GET \
--url https://api.snappy.com/v3/products/exports/{exportId} \
--header 'X-Api-Key: <api-key>'{
"exportId": "exp_abc123",
"status": "pending"
}Documentation Index
Fetch the complete documentation index at: https://docs.snappy.com/llms.txt
Use this file to discover all available pages before exploring further.
Partner API key. Finalized per partner integration agreement.
Export job identifier.
Export job status.
"exp_abc123"
pending, processing, completed, failed Included when status is completed.
json, csv Signed download URL. Included when status is completed.
Download URL expiry. Included when status is completed.
Error message. Included when status is failed.
Was this page helpful?