Get My Profile
curl --request POST \
--url https://api.linkupapi.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"
}
}
Profiles
Get My Profile
Retrieve the profile information of the authenticated account.
POST
/
v2
/
profiles
Get My Profile
curl --request POST \
--url https://api.linkupapi.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"
}
}
Overview
Returns the full profile data for the account associated with the providedaccount_id. No additional parameters are needed beyond the required account_id and action.
This endpoint consumes 1 credit per request.
Request
Your API key for authentication.
The unique identifier of the account to use.
Must be
"get_me".Response
Indicates whether the request was successful.
The profile data of the authenticated account.
Show data properties
Show data properties
Public identifier (vanity name).
First name.
Last name.
Profile headline.
Location text.
About / bio section.
Industry associated with the profile.
Work experience entries. Each item:
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.Education entries. Each item:
school, degree, field_of_study, start_date, end_date, school_url, school_logo_url.List of skills (array of strings).
URL of the profile picture.
Email address (when available).
Phone number (when available).
Website URL (when available).
Number of connections.
true if the account has a LinkedIn Premium subscription.Profile views in the last 90 days (Premium analytics;
0 when not exposed).Post impressions in the last 7 days (Premium analytics;
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?
⌘I