curl -X GET https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0 \
-H "token: YOUR_API_TOKEN"
import requests
response = requests.get(
"https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0",
headers={"token": "YOUR_API_TOKEN"},
)
print(response.json())
const response = await fetch(
"https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0",
{
headers: { "token": "YOUR_API_TOKEN" },
}
);
const data = await response.json();
console.log(data);
{
"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"
}
}
}
{
"success": false,
"message": "Lead not found!",
"data": {
"lead": null,
"company": null
}
}
Leads
Get Lead
Returns detailed data for a specific lead including company information and conversations.
GET
/
leads
/
{leadId}
curl -X GET https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0 \
-H "token: YOUR_API_TOKEN"
import requests
response = requests.get(
"https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0",
headers={"token": "YOUR_API_TOKEN"},
)
print(response.json())
const response = await fetch(
"https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0",
{
headers: { "token": "YOUR_API_TOKEN" },
}
);
const data = await response.json();
console.log(data);
{
"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"
}
}
}
{
"success": false,
"message": "Lead not found!",
"data": {
"lead": null,
"company": null
}
}
Headers
string
required
Your LinkedCamp API token.
Path Parameters
string
required
The ID of the lead.
Response
boolean
Whether the request was successful.
string
A human-readable result message.
object
Show Data Properties
Show Data Properties
object
The lead details (same fields as in List Leads).
object
The lead’s associated company data (if available).
curl -X GET https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0 \
-H "token: YOUR_API_TOKEN"
import requests
response = requests.get(
"https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0",
headers={"token": "YOUR_API_TOKEN"},
)
print(response.json())
const response = await fetch(
"https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0",
{
headers: { "token": "YOUR_API_TOKEN" },
}
);
const data = await response.json();
console.log(data);
{
"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"
}
}
}
{
"success": false,
"message": "Lead not found!",
"data": {
"lead": null,
"company": null
}
}
⌘I
