Authorizations

Authorization

String

Required

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

Body params

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

cURL

Python

Javascript

PHP

GO

curl -X POST "https://api.airscale.io/v1/profile" \
  -H "Authorization: Bearer YOUR_USER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"linkedin_profile_url":"https://linkedin.com/in/vdetraz"}'

cURL

Python

Javascript

PHP

GO

curl -X POST "https://api.airscale.io/v1/profile" \
  -H "Authorization: Bearer YOUR_USER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"linkedin_profile_url":"https://linkedin.com/in/vdetraz"}'

200

200

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