> ## Documentation Index
> Fetch the complete documentation index at: https://docs.linkupapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get My Profile

> Retrieve your own LinkedIn profile information

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

<Note>
  This endpoint costs **1 credit** per request.
</Note>

### Header Parameters

<ParamField header="x-api-key" type="string" required>
  Your API key
</ParamField>

### Body Parameters

<ParamField body="country" type="string" default="FR">
  Country code for proxy selection. Available: (US, UK, FR, DE, NL, IT, IL, CA, BR, ES, IN)
</ParamField>

<ParamField body="login_token" type="string" required>
  LinkedIn authentication cookie obtained from the login/verify process
</ParamField>

### Response

<ResponseField name="status" type="string">
  Request status (success/error)
</ResponseField>

<ResponseField name="data" type="object">
  <Expandable title="Properties">
    <ResponseField name="public_id" type="string">
      Public identifier of your LinkedIn profile
    </ResponseField>

    <ResponseField name="first_name" type="string">
      Your first name
    </ResponseField>

    <ResponseField name="last_name" type="string">
      Your last name
    </ResponseField>

    <ResponseField name="headline" type="string">
      Your professional headline/title
    </ResponseField>

    <ResponseField name="location" type="string">
      Your geographic location
    </ResponseField>

    <ResponseField name="summary" type="string">
      Your profile summary/about section
    </ResponseField>

    <ResponseField name="industry" type="string">
      Your industry sector
    </ResponseField>

    <ResponseField name="experience" type="array">
      <Expandable title="Experience Object">
        <ResponseField name="company" type="string">
          Company name
        </ResponseField>

        <ResponseField name="title" type="string">
          Job title
        </ResponseField>

        <ResponseField name="description" type="string">
          Job description
        </ResponseField>

        <ResponseField name="start_date" type="string">
          Start date of employment (MM/YYYY format)
        </ResponseField>

        <ResponseField name="end_date" type="string">
          End date of employment (MM/YYYY format, empty string if current position)
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="education" type="array">
      <Expandable title="Education Object">
        <ResponseField name="school" type="string">
          School or institution name
        </ResponseField>

        <ResponseField name="degree" type="string">
          Degree obtained
        </ResponseField>

        <ResponseField name="field_of_study" type="string">
          Field of study or specialization
        </ResponseField>

        <ResponseField name="start_date" type="string">
          Start year
        </ResponseField>

        <ResponseField name="end_date" type="string">
          End year (empty string if ongoing)
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="skills" type="array">
      Array of your professional skills (strings)
    </ResponseField>

    <ResponseField name="profile_picture_url" type="string">
      URL to your profile picture
    </ResponseField>

    <ResponseField name="email" type="string">
      Your email address (if publicly available)
    </ResponseField>

    <ResponseField name="phone" type="string">
      Your phone number (if publicly available)
    </ResponseField>

    <ResponseField name="website" type="string">
      Your personal or professional website (if available)
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "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": "aless.prx@gmail.com",
      "phone": "",
      "website": "",
      "connection_count": 330

    }
  }
  ```

  ```json Error Response theme={null}
  {
    "status": "error",
    "message": "LinkedIn cookie invalid or expired"
  }
  ```
</ResponseExample>

### 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
