Get Profile Info
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>",
"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"
}
}
Profiles
Get Profile Info
Retrieve the profile information of any user.
POST
/
v2
/
profiles
Get Profile Info
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>",
"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"
}
}
Overview
Fetches detailed profile data for a specified user. You can identify the target profile using a profile URL, a public identifier, or a profile URN.This endpoint consumes 1 credit per request.
Request
Your API key for authentication.
The unique identifier of the account to use.
Must be
"get".Show params properties
Show params properties
Profile URL of the target user. Also accepts
linkedin_url as an alias. Required if identifier and profile_urn are not provided.The public identifier (vanity name) of the target profile. Can be used instead of
profile_url.The URN of the target profile. Can be used instead of
profile_url.Response
Indicates whether the request was successful.
The profile data of the target user.
Show data properties
Show data properties
Public identifier (vanity name).
LinkedIn entity URN of the profile (e.g.
ACoAA...).Canonical profile URL.
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. "10/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.
Number of connections.
Number of followers.
{
"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?
⌘I