Skip to main content
POST
/
linkedin
/
profiles
/
collect
cURL
curl -X POST "https://api.brightdata.com/linkedin/profiles/collect" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.linkedin.com/in/john-doe/"}'
{
  "linkedin_id": "ACoAAC1xYZQ",
  "name": "John Doe",
  "country_code": "US",
  "city": "San Francisco",
  "position": "Senior Software Engineer",
  "current_company": "LinkedIn",
  "about": "Experienced software engineer with expertise in distributed systems and cloud infrastructure.",
  "followers": 18452,
  "connections": 500,
  "avatar": "https://media.licdn.com/dms/image/C5603AQH-profile.jpg",
  "banner_image": "https://media.licdn.com/dms/image/C4D16AQ-banner.jpg",
  "url": "https://www.linkedin.com/in/john-doe/",
  "timestamp": "2025-01-22T10:45:30Z"
}
The Profiles API allows you to collect detailed LinkedIn profile information using a LinkedIn profile URL.

Collect by URL

This endpoint allows users to collect detailed information about a LinkedIn profile.

Input Parameters

URL
string
required
The LinkedIn profile URL.

Output Structure

Includes comprehensive data points across multiple categories.

Profile details

  • linkedin_id
  • name
  • country_code
  • city
  • current_company
  • current_company name
  • current_company_company_id
  • about

Professional information

  • education
  • educations_details
  • certifications
  • languages
  • recommendations_count
  • recommendations
  • courses
  • projects
  • organizations
  • honors_and_awards

Social activity

  • posts
  • activity
  • followers
  • connections
  • people_also_viewed

Media and identification

  • avatar
  • banner_image
  • url
  • input_url
  • linkedin_num_id
  • id
  • timestamp
For the full list of fields,
View complete output reference

Authorizations

Authorization
string
header
required

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

Body

application/json
url
string<uri>
required

LinkedIn profile URL

Example:

"https://www.linkedin.com/in/john-doe/"

Response

Profile data collected successfully

linkedin_id
string
Example:

"ACoAAC1xYZQ"

name
string
Example:

"John Doe"

country_code
string
Example:

"US"

city
string
Example:

"San Francisco"

position
string
Example:

"Senior Software Engineer"

current_company
string
Example:

"LinkedIn"

about
string
Example:

"Experienced software engineer with a passion for scalable systems and cloud technologies."

followers
integer
Example:

18452

connections
integer
Example:

500

avatar
string
Example:

"https://media.licdn.com/dms/image/C5603AQH-profile.jpg"

banner_image
string
Example:

"https://media.licdn.com/dms/image/C4D16AQ-banner.jpg"

url
string
Example:

"https://www.linkedin.com/in/john-doe/"

timestamp
string
Example:

"2025-01-22T10:45:30Z"