Skip to main content
POST
/
verify
/
single
/
status
Get Single Email Task Status
curl --request POST \
  --url https://sit-api.deliverable.com/api/v1/verify/single/status \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "task_id": "task_abc123xyz"
}
'
{
  "message": "Email task is still processing",
  "data": {
    "task_id": "task_abc123xyz",
    "processing_status": "pending"
  }
}

Authorizations

x-api-key
string
header
required

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

Body

application/json
task_id
string
required

Task ID returned from /verify/single

Example:

"task_abc123xyz"

Response

Task status returned — either pending or success with result

message
string
Example:

"Email task is still processing"

data
object