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>"
}
'{
"success": true,
"data": {
"public_id": "jane-doe-12345",
"first_name": "Jane",
"last_name": "Doe",
"headline": "Senior Software Engineer at Acme Corp",
"location": "San Francisco Bay Area",
"summary": "Engineer focused on distributed systems.",
"industry": "Computer Software",
"experience": [
{
"company": "Acme Corp",
"title": "Senior Software Engineer",
"description": "Leading the platform team.",
"start_date": "1/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": "Stanford University",
"degree": "B.S.",
"field_of_study": "Computer Science",
"start_date": "9/2014",
"end_date": "6/2018"
}
],
"skills": ["Python", "Distributed Systems", "Kubernetes"],
"profile_picture_url": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"email": "[email protected]",
"phone": "",
"website": "",
"connection_count": 842,
"is_premium": false,
"profile_views": 0,
"post_impressions": 0
},
"metadata": {
"action": "get_me",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Retrieve the profile information of the authenticated account.
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>"
}
'{
"success": true,
"data": {
"public_id": "jane-doe-12345",
"first_name": "Jane",
"last_name": "Doe",
"headline": "Senior Software Engineer at Acme Corp",
"location": "San Francisco Bay Area",
"summary": "Engineer focused on distributed systems.",
"industry": "Computer Software",
"experience": [
{
"company": "Acme Corp",
"title": "Senior Software Engineer",
"description": "Leading the platform team.",
"start_date": "1/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": "Stanford University",
"degree": "B.S.",
"field_of_study": "Computer Science",
"start_date": "9/2014",
"end_date": "6/2018"
}
],
"skills": ["Python", "Distributed Systems", "Kubernetes"],
"profile_picture_url": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"email": "[email protected]",
"phone": "",
"website": "",
"connection_count": 842,
"is_premium": false,
"profile_views": 0,
"post_impressions": 0
},
"metadata": {
"action": "get_me",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
account_id. No additional parameters are needed beyond the required account_id and action.
"get_me".Show data properties
company, title, description, start_date and end_date formatted as M/YYYY (e.g. "1/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.true if the account has a LinkedIn Premium subscription.0 when not exposed).0 when not exposed).{
"success": true,
"data": {
"public_id": "jane-doe-12345",
"first_name": "Jane",
"last_name": "Doe",
"headline": "Senior Software Engineer at Acme Corp",
"location": "San Francisco Bay Area",
"summary": "Engineer focused on distributed systems.",
"industry": "Computer Software",
"experience": [
{
"company": "Acme Corp",
"title": "Senior Software Engineer",
"description": "Leading the platform team.",
"start_date": "1/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": "Stanford University",
"degree": "B.S.",
"field_of_study": "Computer Science",
"start_date": "9/2014",
"end_date": "6/2018"
}
],
"skills": ["Python", "Distributed Systems", "Kubernetes"],
"profile_picture_url": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"email": "[email protected]",
"phone": "",
"website": "",
"connection_count": 842,
"is_premium": false,
"profile_views": 0,
"post_impressions": 0
},
"metadata": {
"action": "get_me",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?