Skip to main content
GET
/
v1
/
leads
/
:id
Lead
curl --request GET \
  --url https://api.example.com/v1/leads/:id

Documentation Index

Fetch the complete documentation index at: https://docs.reachedapp.com/llms.txt

Use this file to discover all available pages before exploring further.

Get a Lead

Retrieves the full details of a specific lead by its ID.

Request

GET /v1/leads/:id

Path Parameters

ParameterTypeRequiredDescription
iduuidYesThe unique identifier of the lead

Example

curl -X GET \
  "https://YOUR_PROJECT.supabase.co/functions/v1/api-gateway/v1/leads/a1b2c3d4-e5f6-7890-abcd-ef1234567890" \
  -H "Authorization: Bearer rchd_live_xxxxxxxxxxxx"

Response

{
  "data": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "first_name": "John",
    "last_name": "Doe",
    "email": "john@acme.com",
    "phone": "+33612345678",
    "company_name": "Acme Corp",
    "title": "VP Sales",
    "status": "pending",
    "call_outcome": null,
    "total_calls": 0,
    "ai_enrichment": null,
    "custom_variables": {},
    "created_at": "2026-03-21T10:00:00.000Z",
    "updated_at": "2026-03-21T10:00:00.000Z"
  }
}

Response Fields

FieldTypeDescription
iduuidUnique identifier
first_namestringFirst name
last_namestringLast name
emailstringEmail address
phonestringPhone number (E.164)
company_namestringCompany name
titlestringJob title
statusstringCurrent status
call_outcomestringLast call outcome disposition
total_callsintegerNumber of calls made to this lead
ai_enrichmentstringAI enrichment data (if enriched)
custom_variablesobjectCustom key-value data
created_atdatetimeCreation timestamp
updated_atdatetimeLast update timestamp