Skip to main content
GET
/
leads
/
{id}
Get a lead
curl --request GET \
  --url https://backend.leadey.ai/v1/leads/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "title": "<string>",
    "company": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "linkedinUrl": "<string>",
    "status": "pending",
    "source": "<string>",
    "score": 78,
    "campaignId": "<string>",
    "campaignName": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Your API key, created in the Leadey dashboard under Settings → API Keys. Send it as Authorization: Bearer leadey_sk_live_….

Path Parameters

id
string
required

The resource id.

Response

The requested lead.

data
object