Skip to main content
POST
/
verify
/
bulk
Verify Bulk Emails
curl --request POST \
  --url https://api.deliverable.co/gateway/verify/bulk \
  --header 'Content-Type: multipart/form-data' \
  --header 'x-api-key: <api-key>' \
  --form file='@example-file' \
  --form fileName=my-email-list
{
  "message": {
    "status": "success",
    "statusCode": 200,
    "description": "Email added to queue successfully"
  },
  "data": {
    "file_id": "file_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

multipart/form-data
file
file
required

CSV or TXT file containing one email address per line. Max size: 25MB.

fileName
string
required

Name to identify this file upload

Example:

"my-email-list"

Response

File uploaded and queued for processing

message
object
data
object