Skip to main content
POST
/
verify
/
single
Verify Single Email
curl --request POST \
  --url https://sit-api.deliverable.com/api/v1/verify/single \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "user@example.com"
}
'
{
  "message": "Email added to queue successfully",
  "data": {
    "task_id": "task_abc123xyz"
  }
}

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
string
Example:

"Email added to queue successfully"

data
object