Skip to main content

Get Profile Details

GET /get-profile-details

Retrieve detailed information about a LinkedIn profile.

Pricing

1 credit per call.

Parameters

ParameterTypeRequiredDescription
linkedin_urlstringYesThe LinkedIn profile URL (e.g., https://www.linkedin.com/in/john-doe/)
include_skillsstringNoInclude skills section ("true" or "false")
include_certificationsstringNoInclude certifications ("true" or "false")

Example Request

curl --request GET \
--url 'https://api.infoplug.io/get-profile-details?linkedin_url=https://www.linkedin.com/in/example/&include_skills=true' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'

Example Response

{
"data": {
"full_name": "John Doe",
"headline": "Software Engineer at Company",
"location": "San Francisco, CA",
"profile_picture": "https://media.licdn.com/...",
"about": "Experienced software engineer...",
"experience": [
{
"title": "Senior Software Engineer",
"company": "Tech Corp",
"company_url": "https://www.linkedin.com/company/techcorp/",
"location": "San Francisco, CA",
"start_date": "Jan 2020",
"end_date": "Present",
"description": "..."
}
],
"education": [
{
"school": "Stanford University",
"degree": "Bachelor of Science",
"field": "Computer Science",
"start_date": "2012",
"end_date": "2016"
}
],
"skills": ["Python", "JavaScript", "Docker"],
"certifications": [
{
"name": "AWS Certified Solutions Architect",
"issuer": "Amazon Web Services",
"issue_date": "2023"
}
]
}
}