Skip to main content
POST
/
verify
/
single
/
status
Get Single Email Task Status
curl --request POST \
  --url https://api.deliverable.co/gateway/verify/single/status \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "task_id": "task_abc123xyz"
}
'
{
  "message": {
    "status": "success",
    "statusCode": 200,
    "description": "Email task status fetched successfully"
  },
  "data": {
    "processing_status": "pending",
    "task_id": "task_abc123xyz"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.deliverable.co/llms.txt

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

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 completed with result

message
object
data
object