Skip to main content
POST
/
v1
/
data
/
agnt
/
people
/
email-verifier
Verify a professional email
curl --request POST \
  --url https://api.agntdata.dev/v1/data/agnt/people/email-verifier \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "patrick@stripe.com"
}
'
{
  "success": true,
  "data": {
    "email": "<string>",
    "status": "valid",
    "score": 123,
    "smtp": true,
    "mx": true,
    "disposable": true,
    "webmail": true,
    "gibberish": true
  },
  "meta": {
    "costCents": 123,
    "purchasedBalanceCents": 123,
    "subscriptionRemainingCents": 123,
    "cached": true,
    "latencyMs": 123,
    "priceRange": {
      "minCents": 123,
      "maxCents": 123
    },
    "budgetCents": 123,
    "budgetCentsPerRecord": 123,
    "providersAttempted": 123,
    "fieldsReturned": [
      "<string>"
    ],
    "fieldsMissing": [
      "<string>"
    ],
    "records": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://agnt.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token. Pass your agntdata API key as: Authorization: Bearer agnt_live_...

Body

application/json
email
string<email>
required
max_cost_cents
number
Required range: x >= 0

Response

Verification result.

success
enum<boolean>
required
Available options:
true
data
object
required
meta
object