Skip to main content
GET
/
leads
/
{leadId}
curl -X GET https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0 \
  -H "token: YOUR_API_TOKEN"
{
  "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"
    }
  }
}

Headers

token
string
required
Your LinkedCamp API token.

Path Parameters

leadId
string
required
The ID of the lead.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
data
object
curl -X GET https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0 \
  -H "token: YOUR_API_TOKEN"
{
  "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"
    }
  }
}