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

# Get Lead

> Returns detailed data for a specific lead including company information and conversations.

## Headers

<ParamField header="token" type="string" required>
  Your LinkedCamp API token.
</ParamField>

## Path Parameters

<ParamField path="leadId" type="string" required>
  The ID of the lead.
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Whether the request was successful.
</ResponseField>

<ResponseField name="message" type="string">
  A human-readable result message.
</ResponseField>

<ResponseField name="data" type="object">
  <Expandable title="Data Properties">
    <ResponseField name="lead" type="object">
      The lead details (same fields as in [List Leads](/api-reference/leads/list-leads)).
    </ResponseField>

    <ResponseField name="company" type="object">
      The lead's associated company data (if available).
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0 \
    -H "token: YOUR_API_TOKEN"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0",
      headers={"token": "YOUR_API_TOKEN"},
  )
  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    "https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0",
    {
      headers: { "token": "YOUR_API_TOKEN" },
    }
  );
  const data = await response.json();
  console.log(data);
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Lead found successfully!",
    "data": {
      "lead": {
        "profileLink": "https://www.linkedin.com/in/johndoe",
        "fullName": "John Doe",
        "firstName": "John",
        "lastName": "Doe",
        "status": "CONNECTED",
        "headline": "CEO at Acme Corp",
        "conversations": [
          {
            "type": "LINKEDIN",
            "conversationId": "60f7a1b2c3d4e5f6a7b8c9d1"
          }
        ]
      },
      "company": {
        "name": "Acme Corp",
        "industry": "Technology"
      }
    }
  }
  ```

  ```json 200 - Not found theme={null}
  {
    "success": false,
    "message": "Lead not found!",
    "data": {
      "lead": null,
      "company": null
    }
  }
  ```
</ResponseExample>
