Find email addresses and phone numbers for LinkedIn profiles
Parameter | Type | Required | Description |
---|---|---|---|
linkedin_url | string | One of these | LinkedIn profile URL to enrich |
string | One of these | Email address to find profile | |
phone | string | One of these | Phone number to find profile |
email_enrichment | boolean | Optional | If true, returns emails (costs 4 credits if email found) |
phone_enrichment | boolean | Optional | If true, returns phone numbers (costs 10 credits if phone found) |
linkedin_url
, email
, or phone
must be provided.email_enrichment
and phone_enrichment
can be true at the same time to request both types of contact info.Field | Type | Description |
---|---|---|
data | array | Array containing contact information (always has one item) |
data.error | boolean | Whether an error occurred during lookup |
data.contacts | array | Array of contact information (emails/phones) |
data.contacts.type | string | Contact type: "email" or "phone" |
data.contacts.value | string | The actual email address or phone number |
data.contacts.rating | integer | Confidence score from 0-100 (higher is better) |
data.contacts.subType | string | Contact classification: "personal" , "work" , "verified" , "mobile" , "work_phone" |
data.social | array | Array of social media profiles found |
data.social.link | string | URL of the social media profile |
data.social.type | string | Platform type (e.g., "li" for LinkedIn) |
data.social.rating | integer | Confidence score from 0-100 |
data.provider | string | Data source (optional): "database_verified" , "database_bouncer_verified" , etc. |
Status Code | Description |
---|---|
400 | Bad Request - Must provide exactly one of: LinkedIn URL, email, or phone |
401 | Unauthorized - API key missing or invalid |
402 | Payment Required - Insufficient credits or requires paid plan |
500 | Internal Server Error - Enrichment service error |
API key authentication. Keys start with 'lk_'.
LinkedIn profile URL to get contact information for (e.g., 'https://www.linkedin.com/in/username')
Email address to find profile and get contact information (e.g., '[email protected]')
Phone number to find profile and get contact information (e.g., '+1234567890')
If true, returns emails (costs 4 credits if email found). Can be combined with phone_enrichment to request both
If true, returns phone numbers (costs 10 credits if phone found). Can be combined with email_enrichment to request both
Contact info retrieved
The response is of type object
.