Skip to main content
POST
/
deliverable
/
{listId}
/
add
Add emails to deliverable list
curl --request POST \
  --url https://api.omniverifier.com/v1/validate/deliverable/{listId}/add \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "emails": [
    "[email protected]",
    "[email protected]"
  ]
}
'
{
  "id": 12345,
  "count": 100
}

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

listId
string
required

List ID

Body

application/json
emails
string<email>[]
required

Array of email addresses to add

Required array length: 1 - 10000 elements

Response

Successfully added emails to list

id
integer

List ID

Example:

12345

count
integer

Number of emails added

Example:

100