Skip to main content
POST
/
api
/
contacts
/
search
Search Contacts
curl --request POST \
  --url https://a.contactlevel.com/api/contacts/search \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "organization_id": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "job_title": "<string>",
  "functional_area": "<string>",
  "company_name": "<string>",
  "company_domain": "<string>",
  "city": "<string>",
  "state_region": "<string>",
  "country": "<string>",
  "postal_code": "<string>",
  "linkedin_url": "<string>",
  "query": "<string>",
  "limit": 123
}
'
{
  "organization_id": "<string>",
  "contacts": [
    {
      "id": "<string>",
      "organization_id": "<string>",
      "data_import_id": "<string>",
      "contact_id": "<string>",
      "company_id": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "work_emails": [
        "<string>"
      ],
      "personal_emails": [
        "<string>"
      ],
      "phones": [
        "<string>"
      ],
      "linkedin_url": "<string>",
      "job_title": "<string>",
      "functional_area": "<string>",
      "company_name": "<string>",
      "company_linkedin_url": "<string>",
      "company_domain": "<string>",
      "company_country": "<string>",
      "company_industry": "<string>",
      "city": "<string>",
      "state_region": "<string>",
      "country": "<string>",
      "postal_code": "<string>",
      "age": 123,
      "dob": "2023-12-25",
      "year_of_birth": 123,
      "gender": "<string>",
      "person_image_url": "<string>",
      "company_image_url": "<string>"
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Body

application/json
organization_id
string
required
first_name
string | null
last_name
string | null
job_title
string | null
functional_area
string | null
company_name
string | null
company_domain
string | null
city
string | null
state_region
string | null
country
string | null
postal_code
string | null
linkedin_url
string | null
query
string | null
limit
integer | null

Response

Successful Response

organization_id
string
required
contacts
Api_Organization_contact · object[]
required