Skip to main content
POST
/
verify
/
bulk
/
status
Get Bulk File Status & Download URL
curl --request POST \
  --url https://sit-api.deliverable.com/api/v1/verify/bulk/status \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "file_id": "file_xyz789abc"
}
'
{
  "message": "File is still being processed",
  "data": {
    "file_id": "file_xyz789abc",
    "file_name": "emails.csv",
    "processing_status": "processing"
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication. Pass your API key in the x-api-key header.

Body

application/json
file_id
string
required

File ID returned from /verify/bulk

Example:

"file_xyz789abc"

Response

File status returned — either processing or completed with download URL

message
string
Example:

"File is still being processed"

data
object