POST
/
v1
/
profile
/
me
curl --request POST \
  --url https://api.linkupapi.com/v1/profile/me \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "country": "<string>",
  "login_token": "<string>"
}'
{
  "status": "success",
  "data": {
    "public_id": "ales-prw-aa0262324",
    "first_name": "Ales",
    "last_name": "Prw",
    "headline": "I am building the API that allows automating any action on LinkedIn",
    "location": "France",
    "summary": "",
    "industry": "Technologie, information et Internet",
    "experience": [
      {
        "company": "Linkup API",
        "title": "Chef des operations de vente",
        "description": "",
        "start_date": "2/2024",
        "end_date": ""
      }
    ],
    "education": [
      {
        "school": "Audencia",
        "degree": "",
        "field_of_study": "",
        "start_date": "2023",
        "end_date": "2028"
      }
    ],
    "skills": [],
    "profile_picture_url": "https://media.licdn.com/dms/image/v2/D4E35AQHM55HVRsX2EQ/profile-framedphoto-shrink_800_800/B4EZVxtoULHUAk-/0/1741369542263?e=1744149600&v=beta&t=p-clL5GlL8k1XUFNIx0NgBnegAJv8eckGUG_c2cZrFg",
    "email": "[email protected]",
    "phone": "",
    "website": "",
    "connection_count": 330

  }
}

Get comprehensive information about your own LinkedIn profile using your authentication cookie.

This endpoint costs 1 credit per request.

Header Parameters

x-api-key
string
required

Your API key

Body Parameters

country
string
default:"FR"

Country code for proxy selection. Available: (US,UK,FR)

login_token
string
required

LinkedIn authentication cookie obtained from the login/verify process

Response

status
string

Request status (success/error)

data
object
{
  "status": "success",
  "data": {
    "public_id": "ales-prw-aa0262324",
    "first_name": "Ales",
    "last_name": "Prw",
    "headline": "I am building the API that allows automating any action on LinkedIn",
    "location": "France",
    "summary": "",
    "industry": "Technologie, information et Internet",
    "experience": [
      {
        "company": "Linkup API",
        "title": "Chef des operations de vente",
        "description": "",
        "start_date": "2/2024",
        "end_date": ""
      }
    ],
    "education": [
      {
        "school": "Audencia",
        "degree": "",
        "field_of_study": "",
        "start_date": "2023",
        "end_date": "2028"
      }
    ],
    "skills": [],
    "profile_picture_url": "https://media.licdn.com/dms/image/v2/D4E35AQHM55HVRsX2EQ/profile-framedphoto-shrink_800_800/B4EZVxtoULHUAk-/0/1741369542263?e=1744149600&v=beta&t=p-clL5GlL8k1XUFNIx0NgBnegAJv8eckGUG_c2cZrFg",
    "email": "[email protected]",
    "phone": "",
    "website": "",
    "connection_count": 330

  }
}

Notes

  • This endpoint returns the same comprehensive profile data format as the /v1/profile/info endpoint
  • Fields may be empty strings when information is not available
  • Experience and education arrays may be empty when no entries exist
  • The response includes all your profile information, formatted in a consistent structure with other profile endpoints
  • This endpoint is useful for validating your login token and retrieving your own profile data