Skip to main content
POST
/
verify
/
single
Verify Single Email
curl --request POST \
  --url https://api.deliverable.co/gateway/verify/single \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "user@example.com"
}
'
{
  "message": {
    "status": "success",
    "statusCode": 200,
    "description": "Email added to queue successfully"
  },
  "data": {
    "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
email
string<email>
required

The email address to verify

Example:

"user@example.com"

Response

Email added to queue successfully

message
object
data
object