Authorizations

Authorization

String

Required

Bearer authentication header of the form Bearer <YOUR_API_KEY>, where <YOUR_API_KEY> is your auth token.

Body params

first_name

String

Required

Provide the first name of the individual.

example: Victor

Provide the first name of the individual.

example: Victor

last_name

String

Required

Provide the last name of the individual.

example: Detraz

Provide the last name of the individual.

example: Detraz

company_name

String

Required

Provide the company name of the individual's current organization

example: Airscale

Provide the company name of the individual's current organization

example: Airscale

cURL

Python

Javascript

PHP

GO

curl -X POST https://api.airscale.io/v1/url-search-people \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "first_name": "Victor",
    "last_name": "Detraz",
    "company_name": "Airscale"
  }'

cURL

Python

Javascript

PHP

GO

curl -X POST https://api.airscale.io/v1/url-search-people \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "first_name": "Victor",
    "last_name": "Detraz",
    "company_name": "Airscale"
  }'

200

200

{
    "status": "success",
    "url": "https://www.linkedin.com/vdetraz"
}

{
  "status": "success",
  "linkedin_profile_url": "https://www.linkedin.com/in/vdetraz",
  "phone_number": "+33610607076",
  "provider": "RocketReach"
}