/people/email-verifierVerify a professional email
People — Email
Cost / request
$0.01
Response format
JSON
Protocol
REST
About this endpoint
Verify whether an email address is deliverable. Returns a normalized status (deliverable, risky, undeliverable, unknown) plus provider-agnostic signals — usable as a hygiene step before any outbound send.
Use cases
Pre-flight verification before email sends
List hygiene jobs cleaning stale CRM data
Validating user-submitted emails at signup
Parameters
bodyRequest Bodyrequired
Content type: application/json
Responses
Verification result.
{
"type": "object",
"required": [
"success",
"data"
],
"properties": {
"success": {
"type": "boolean",
"enum": [
true
]
},
"data": {
"$ref": "#/components/schemas/PeopleEmailVerifierResponse"
},
"meta": {
"$ref": "#/components/schemas/AgntMeta"
}
}
}Agent / Developer Schema
Machine-readable formats for integrating this endpoint into AI agents and toolchains.
{
"operationId": "people_email_verifier",
"method": "post",
"path": "/people/email-verifier",
"summary": "Verify a professional email",
"description": "Verify the deliverability and reputation of an email address. Returns a normalized status (deliverable, risky, undeliverable, unknown) and provider-agnostic signals.",
"parameters": [],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PeopleEmailVerifierRequest"
},
"example": {
"email": "patrick@stripe.com"
}
}
}
},
"responses": [
{
"statusCode": "200",
"description": "Verification result.",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"success",
"data"
],
"properties": {
"success": {
"type": "boolean",
"enum": [
true
]
},
"data": {
"$ref": "#/components/schemas/PeopleEmailVerifierResponse"
},
"meta": {
"$ref": "#/components/schemas/AgntMeta"
}
}
}
}
}
},
{
"statusCode": "400",
"description": "Validation error."
},
{
"statusCode": "401",
"description": "Unauthorized."
},
{
"statusCode": "402",
"description": "Insufficient credits."
}
]
}Pricing
$0.01per successful request
Credits are deducted from your agntdata balance on each successful API call. Failed requests (4xx/5xx) are not charged.
Related endpoints
Start using this endpoint
Generate your API key and make your first call in under a minute. Free tier available with transparent pricing.
email verification APIemail validator APIdeliverability checklead enrichment APIemail finder APIemail verifier API