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

Provide the first name of the contact to enrich.

Provide the first name of the contact to enrich.

Provide the first name of the contact to enrich.

last_name

String

Provide the last name of the contact to enrich.

Provide the last name of the contact to enrich.

Provide the last name of the contact to enrich.

company name

String

Provide the company name of the contact to enrich.

example: Airscale

Provide the company name of the contact to enrich.

example: Airscale

Provide the company name of the contact to enrich.

example: Airscale

domain

String

Provide the company domain of the contact to enrich.

example: airscale.io

Provide the company domain of the contact to enrich.

example: airscale.io

Provide the company domain of the contact to enrich.

example: airscale.io

linkedin_profile_url

String

Provide the linkedin profile URL of the contact.


example: https://linkedin.com/in/vdetraz

Provide the linkedin profile URL of the contact.


example: https://linkedin.com/in/vdetraz

Input requirements

-Option 1: Name + Company or Domain

Provide: first_name and last_name plus one of: domain (e.g. example.com) or company_name (e.g. Example Inc.)


-Option 2: LinkedIn only

Provide a valid linkedin_profile_url → This is enough on its own.

cURL

Python

Javascript

PHP

GO

curl -X POST "https://api.airscale.io/v1/email" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
        "linkedin_profile_url": "https://www.linkedin.com/in/vdetraz/",
        "first_name": "Victor",
        "last_name": "Detraz",
        "domain": "airscale.io",
        "company_name": "Airscale"
      }'

cURL

Python

Javascript

PHP

GO

curl -X POST "https://api.airscale.io/v1/email" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
        "linkedin_profile_url": "https://www.linkedin.com/in/vdetraz/",
        "first_name": "Victor",
        "last_name": "Detraz",
        "domain": "airscale.io",
        "company_name": "Airscale"
      }'

200

200

{
  "status": "success",
  "email": "victor@airscale.io",
  "email_status": "valid",
  "provider": "Prospeo",
  "verifier": "Bounceban"
}

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