Skip to main content
Submit Email
curl --request POST \
  --url https://api.sandbox.verisoul.ai/email \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "john.doe@example.com",
  "identity_intelligence": true,
  "claims": {
    "name": {
      "first": "John",
      "last": "Doe"
    },
    "phone": "+14155551234",
    "country": "US"
  }
}
'
{
  "request_id": "13011020-857d-49ee-b155-bf35b572c25a"
}

Authorizations

x-api-key
string
header
required

Body

application/json

See the Email type for full field documentation.

email
string
required

Email address to analyze

claims
object

Identity claims to verify against data linked to the email. Useful when identity_intelligence is enabled.

identity_intelligence
boolean
default:false

Enable deeper identity analysis including online presence, name/phone matching, and connected identities. See Identity Intelligence.

Response

Email accepted for processing

request_id
string

Unique identifier for this request. Use to correlate with the request_id in the webhook callback.