Skip to main content
GET
/
api
/
v1
/
leads
/
{id}
Get a lead by id
curl --request GET \
  --url https://app.vorel.ai/api/v1/leads/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "attributes": {},
  "status": "new",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "intent": "<string>",
  "timeline": "<string>",
  "qualification_score": 50,
  "source": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.vorel.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Tenant-issued API key. Format: vapk_live_<48 hex chars> (60 chars total). Issue + manage at /settings/integrations/api-keys in the Vorel dashboard. Each key has a scope set (read, leads:write, appointments:write, offerings:write); endpoints requiring a write scope reject keys without it with a 403 envelope.

Path Parameters

id
string<uuid>
required

UUID of the lead.

Response

The lead.

id
string<uuid>
required
conversation_id
string<uuid>
required
attributes
object
required

Vertical-specific JSONB. Real estate emits bedrooms/budget_min/area/etc.; salons emit preferred_stylist/service_history/etc.; clinics emit insurance_provider/symptoms_summary/etc. The shape is determined by the tenant's vertical pack — consult your operator setup for the keys to expect.

status
enum<string>
required
Available options:
new,
qualified,
booked,
converted,
lost
created_at
string<date-time>
required
updated_at
string<date-time>
required
name
string | null
email
string<email> | null
phone
string | null
intent
string | null
timeline
string | null
qualification_score
integer | null
Required range: 0 <= x <= 100
source
string | null