Skip to main content
POST
/
v1
/
contacts
Fetch contact details
curl --request POST \
  --url https://api.example.com/v1/contacts \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "url": "company.com",
  "name": "Jane Smith",
  "title": "Owner",
  "title_hierarchy": "C Level Executive",
  "department": "C Level Executive",
  "city": "San Francisco",
  "zip_code": "94105",
  "county": "San Francisco County",
  "state": "CA",
  "linkedin_url": "https://www.linkedin.com/in/janesmith",
  "linkedin_description": "Fractional CFO, Accounting and Finance Services",
  "page": 1,
  "per_page": 50
}
'
{
  "success": true,
  "records": [
    {
      "city": "Brighton",
      "company": "TechWorks",
      "company_id": "CMP000111222333XYZ",
      "contact_id": "CNT999888777666ABC",
      "country": "United States",
      "county": "Collin County",
      "department": "Engineering",
      "employment_timeline": "TechWorks: CTO: 2020-06 to Present - AeroTech Labs: Senior Engineer: 2015-04 to 2020-05 - Weston University: Research Assistant: 2012-09 to 2015-03",
      "first_name": "Jordan",
      "gender": "Female",
      "last_name": "Taylor",
      "linkedin": "linkedin.com/in/jordan-taylor-1678900a",
      "linkedin_description": "CTO at TechWorks",
      "location": "Brighton, TX, United States",
      "name": "Jordan Taylor",
      "seniority": "C Level Executive",
      "start_date": "2020-06-01T00:00:00.000000",
      "state": "TX",
      "state_name": "Texas",
      "title": "Chief Technology Officer",
      "title_priority": 1,
      "url": "techworks.io",
      "years_in_role": 5.3,
      "zip_code": "75001"
    }
  ],
  "total_records": 1
}

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
url

Company URL or list of company URLs (with or without http)

Example:

"company.com"

name
string | null

Contact name

Example:

"Jane Smith"

title

Contact title or list of titles

Example:

"Owner"

title_hierarchy
string | null

Contact title hierarchy

Example:

"C Level Executive"

department
string | null

Contact department

Example:

"C Level Executive"

city
string | null

Contact city

Example:

"San Francisco"

zip_code
string | null

Contact Zip code

Example:

"94105"

county
string | null

Contact county

Example:

"San Francisco County"

state
string | null

Contact state

Example:

"CA"

linkedin_url

Contact LinkedIn URL or list of LinkedIn URLs

Example:

"https://www.linkedin.com/in/janesmith"

linkedin_description
string | null

LinkedIn profile header/description

Example:

"Fractional CFO, Accounting and Finance Services"

page
integer | null
default:1

Page number for pagination

Example:

1

per_page
integer | null
default:50

Number of records per page

Example:

50

Response

Successful Response

Last modified on March 23, 2026