# List leads

> Returns contact details captured by the agent — from the lead form, a human handoff, or a booking — newest first.

Source: https://www.hey.support/docs/api/leads/list-leads

---

<ApiEndpoint method="GET" path="/leads" />

Filter by chatbot, status, or capture date.

## Query parameters

<TypeTable
  type={{
  "chatbot_id": { type: "string", description: "Sqid-encoded chatbot id. Scopes results to one chatbot.", required: false },
  "status": { type: "string", description: "", required: false },
  "since": { type: "string (date-time)", description: "", required: false },
  "limit": { type: "integer", description: "", required: false },
  "offset": { type: "integer", description: "", required: false }
}}
/>

## Response `200`

Returns a `data` array with a `pagination` object. Each item:

<TypeTable
  type={{
  "id": { type: "string", description: "", required: true },
  "chatbot_id": { type: "string", description: "", required: true },
  "name": { type: "string", description: "", required: false },
  "email": { type: "string (email)", description: "", required: false },
  "phone": { type: "string", description: "", required: false },
  "status": { type: "string", description: "", required: true },
  "notes": { type: "string", description: "", required: false },
  "conversation_id": { type: "string", description: "", required: false },
  "created_at": { type: "string (date-time)", description: "", required: true }
}}
/>

### Errors

* `401` — Missing or invalid API key
* `429` — Rate limit exceeded

Every error shares [one envelope](/docs/api/errors).

## Example

```bash
curl https://www.hey.support/api/v1/leads \
  -H 'Authorization: Bearer hs_live_…'
```
