Skip to main content
POST
/
verify
/
bulk
Verify Bulk Emails
curl --request POST \
  --url https://sit-api.deliverable.com/api/v1/verify/bulk \
  --header 'Content-Type: multipart/form-data' \
  --header 'x-api-key: <api-key>' \
  --form file='@example-file' \
  --form fileName=my-email-list.csv
{
  "message": "File uploaded and queued for processing",
  "data": {
    "file_id": "file_xyz789abc",
    "file_name": "emails.csv",
    "total_emails": 1500
  }
}

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.csv"

Response

File uploaded and queued for processing

message
string
Example:

"File uploaded and queued for processing"

data
object