Skip to main content
POST
/
v2
/
profiles
Get Profile Info
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"
  }
}

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

x-api-key
string
required
Your API key for authentication.
account_id
string
required
The unique identifier of the account to use.
action
string
required
Must be "get".
params
object

Response

success
boolean
Indicates whether the request was successful.
data
object
The profile data of the target user.
metadata
object
{
  "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"
  }
}