Skip to main content
POST
/
v1
/
emails
/
find
Find email
curl --request POST \
  --url https://api.example.com/v1/emails/find \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "first_name": "<string>",
  "last_name": "<string>",
  "url": "<string>",
  "linkedin_url": "<string>"
}
'
{
  "success": true,
  "email": "joseph@example.com",
  "email_status": "VALID"
}

Documentation Index

Fetch the complete documentation index at: https://docs.leadx.com/llms.txt

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

Authorizations

X-API-Key
string
header
required

Body

application/json
first_name
string | null

Contact first name

last_name
string | null

Contact last name

url
string | null

Company website domain (e.g., 'acme.com'). 'https://acme.com' is accepted and normalized.

linkedin_url
string | null

Public LinkedIn profile URL of the contact

Response

Successful Response

Last modified on March 23, 2026