curl --request POST \
--url https://api.example.com/v2/profiles \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"profile_url": "<string>",
"identifier": "<string>",
"profile_urn": "<string>"
}
}
'{
"success": true,
"data": {
"public_id": "john-smith-42",
"profile_urn": "ACoAABCgruIBcpBVBLKMJQD2Do7tIBxKFIQNvss",
"profile_url": "https://www.linkedin.com/in/john-smith-42",
"first_name": "John",
"last_name": "Smith",
"headline": "Product Manager @Acme Corp | Lecturer @Sample University",
"location": "Greater Paris, France",
"summary": "",
"industry": "Internet",
"experience": [
{
"company": "Acme Corp",
"title": "Product Manager",
"description": "",
"start_date": "10/2023",
"end_date": "",
"company_url": "https://linkedin.com/company/acme-corp",
"company_logo_url": "https://media.licdn.com/dms/image/v2/.../company-logo.jpg"
}
],
"education": [
{
"school": "Sample University",
"degree": "MBA",
"field_of_study": "Business",
"start_date": "9/2018",
"end_date": "6/2020"
}
],
"skills": ["Product Strategy", "User Research"],
"profile_picture_url": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"connection_count": 500,
"follower_count": 1234
},
"metadata": {
"action": "get",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Retrieve the profile information of any user.
curl --request POST \
--url https://api.example.com/v2/profiles \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"profile_url": "<string>",
"identifier": "<string>",
"profile_urn": "<string>"
}
}
'{
"success": true,
"data": {
"public_id": "john-smith-42",
"profile_urn": "ACoAABCgruIBcpBVBLKMJQD2Do7tIBxKFIQNvss",
"profile_url": "https://www.linkedin.com/in/john-smith-42",
"first_name": "John",
"last_name": "Smith",
"headline": "Product Manager @Acme Corp | Lecturer @Sample University",
"location": "Greater Paris, France",
"summary": "",
"industry": "Internet",
"experience": [
{
"company": "Acme Corp",
"title": "Product Manager",
"description": "",
"start_date": "10/2023",
"end_date": "",
"company_url": "https://linkedin.com/company/acme-corp",
"company_logo_url": "https://media.licdn.com/dms/image/v2/.../company-logo.jpg"
}
],
"education": [
{
"school": "Sample University",
"degree": "MBA",
"field_of_study": "Business",
"start_date": "9/2018",
"end_date": "6/2020"
}
],
"skills": ["Product Strategy", "User Research"],
"profile_picture_url": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"connection_count": 500,
"follower_count": 1234
},
"metadata": {
"action": "get",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
"get".Show params properties
linkedin_url as an alias. Required if identifier and profile_urn are not provided.profile_url.profile_url.Show data properties
ACoAA...).company, title, description, start_date and end_date formatted as M/YYYY (e.g. "10/2025"; end_date is "" for current roles), company_url, company_logo_url.school, degree, field_of_study, start_date, end_date, school_url, school_logo_url.{
"success": true,
"data": {
"public_id": "john-smith-42",
"profile_urn": "ACoAABCgruIBcpBVBLKMJQD2Do7tIBxKFIQNvss",
"profile_url": "https://www.linkedin.com/in/john-smith-42",
"first_name": "John",
"last_name": "Smith",
"headline": "Product Manager @Acme Corp | Lecturer @Sample University",
"location": "Greater Paris, France",
"summary": "",
"industry": "Internet",
"experience": [
{
"company": "Acme Corp",
"title": "Product Manager",
"description": "",
"start_date": "10/2023",
"end_date": "",
"company_url": "https://linkedin.com/company/acme-corp",
"company_logo_url": "https://media.licdn.com/dms/image/v2/.../company-logo.jpg"
}
],
"education": [
{
"school": "Sample University",
"degree": "MBA",
"field_of_study": "Business",
"start_date": "9/2018",
"end_date": "6/2020"
}
],
"skills": ["Product Strategy", "User Research"],
"profile_picture_url": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"connection_count": 500,
"follower_count": 1234
},
"metadata": {
"action": "get",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?