Leads
Get a lead
Returns a single lead, including its campaign name.
GET
/
leads
/
{id}
Get a lead
curl --request GET \
--url https://backend.leadey.ai/v1/leads/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://backend.leadey.ai/v1/leads/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://backend.leadey.ai/v1/leads/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"id": "lead_8Kq2mXvR",
"name": "Priya Raman",
"firstName": "Priya",
"lastName": "Raman",
"title": "Head of Revenue Operations",
"company": "Northwind Logistics",
"email": "priya.raman@northwind.co.uk",
"phone": "+442071838750",
"linkedinUrl": "https://www.linkedin.com/in/priyaraman",
"status": "pending",
"source": "linkedin-search",
"score": 78,
"campaignId": "fnl_Q3OutboundUK",
"campaignName": "Q3 outbound, UK logistics",
"createdAt": "2026-07-14T09:12:44.000Z"
}
}{
"error": {
"message": "Invalid or revoked API key.",
"details": null
}
}{
"error": {
"message": "Lead not found",
"details": null
}
}⌘I
Get a lead
curl --request GET \
--url https://backend.leadey.ai/v1/leads/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://backend.leadey.ai/v1/leads/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://backend.leadey.ai/v1/leads/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"id": "lead_8Kq2mXvR",
"name": "Priya Raman",
"firstName": "Priya",
"lastName": "Raman",
"title": "Head of Revenue Operations",
"company": "Northwind Logistics",
"email": "priya.raman@northwind.co.uk",
"phone": "+442071838750",
"linkedinUrl": "https://www.linkedin.com/in/priyaraman",
"status": "pending",
"source": "linkedin-search",
"score": 78,
"campaignId": "fnl_Q3OutboundUK",
"campaignName": "Q3 outbound, UK logistics",
"createdAt": "2026-07-14T09:12:44.000Z"
}
}{
"error": {
"message": "Invalid or revoked API key.",
"details": null
}
}{
"error": {
"message": "Lead not found",
"details": null
}
}