Skip to main content
POST
/
emails
/
bulk
cURL
curl -X POST 'https://api.nuntly.com/emails/bulk' \
  -H 'Authorization: Bearer apk_xxx' \
  -H 'Content-Type: application/json' \
  -d '{"emails":[{"from":"Tomlinson AI <ray@info.tomlinson.ai>","to":"brian67@gmail.com","subject":"Verify your email address","text":"Thank you for signing up! Please verify your email address."}]}'
{
  "data": {
    "emails": [
      {
        "id": "<string>"
      }
    ],
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Use an API key from https://nuntly.com/dashboard/api-keys. Required on every endpoint.

Headers

Idempotency-Key
string

Unique key to ensure the request is processed at most once. UUIDv4 recommended.

Required string length: 1 - 255

Body

application/json
emails
object[]
required

The bulk emails to send.

fallback
object

Used as a fallback field email value if no value is present in emails.

Response

Request accepted.

data
object
required