Skip to main content
POST
/
find-email
Find Email (Sync)
curl --request POST \
  --url https://api.sixtyfour.ai/find-email \
  --header 'Content-Type: application/json' \
  --data '
{
  "lead": {},
  "verify_emails": true,
  "mode": "PROFESSIONAL",
  "providers": [
    "<string>"
  ],
  "webhook_url": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sixtyfour.ai/llms.txt

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

Headers

x-api-key
string | null

Body

application/json
lead
Lead · object
required

Single lead to process. Provide any combination of name, email, company, linkedin, etc.

verify_emails
boolean
default:true

SMTP-verify each discovered email before returning it.

mode
enum<string>
default:PROFESSIONAL

Email type to discover: 'PROFESSIONAL' (work) or 'PERSONAL'.

Available options:
PROFESSIONAL,
PERSONAL
providers
string[] | null

Override the default provider waterfall by listing provider IDs in priority order.

webhook_url
string<uri> | null

HTTPS URL that receives the result payload when the async job completes.

Required string length: 1 - 2083

Response

Successful Response