Overview
The Get LinkedIn Contact Info endpoint retrieves contact information (emails and phones) associated with LinkedIn usernames. This is useful when you have a LinkedIn profile URL and want to find the person’s contact details.Request
Headers
Your API key for authentication
application/json
Request Body
An array of LinkedIn usernames to generate contact info for. Maximum 1000 records per request. Each element should be a string containing the LinkedIn username (not the full URL). Provide only the username portion of the LinkedIn URL. For example, from
https://www.linkedin.com/in/johnsmith, use "johnsmith".Response
Response Structure
Unique identifier for this API request
Array of contact information results
ISO 8601 timestamp when the request was completed
Result Object
The LinkedIn username from the request
Whether contact information was found for this LinkedIn profile
Person’s first name
Person’s middle name
Person’s last name
Name suffix (e.g., “Jr.”, “Sr.”)
Array of personal email addresses with ranking and confidence scores
Array of professional/work email addresses with ranking and confidence scores
Array of phone numbers with ranking and confidence scores
Email Object
Rank/priority of this email (1 = highest priority)
Email address
Confidence score for this email (0-1 scale)
Phone Object
Rank/priority of this phone (1 = highest priority)
Phone number
Confidence score for this phone (0-1 scale)
Error Responses
400- Bad Request: Invalid input format401- Unauthorized: Invalid API key413- Payload Too Large: More than 1000 records in request422- Unprocessable Entity: Invalid data format (records must be an array of strings)500- Internal Server Error
Notes
- LinkedIn usernames are case-insensitive
- The endpoint automatically handles various LinkedIn URL formats and extracts the username
- When
is_matchis false, name and contact fields will be null - Emails and phones are sorted by rank, with lower numbers indicating higher priority/confidence
- Confidence scores range from 0 to 1, with higher values indicating greater confidence in the data

