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

Overview

Returns the full profile data for the account associated with the provided account_id. No additional parameters are needed beyond the required account_id and action.
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_me".

Response

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