---
title: "List Outbound Leads"
method: GET
path: "/outbound-leads/"
tags: ["Outbound Leads"]
---

# List Outbound Leads

`GET /outbound-leads/`

List outbound leads for the current user's customer.

## Query parameters

- `limit` integer
- `offset` integer
- `search` string, nullable — Search by name, phone, or email
- `status` string, nullable — Filter by status

## Response `200`

Successful Response

- OutboundLeadListResponse — Response for listing outbound leads with pagination.
  - `leads` OutboundLeadResponse[], required
    - `outbound_lead_id` string, uuid, required
    - `customer_id` string, uuid, required
    - `status` string, required
    - `first_name` string, nullable
    - `last_name` string, nullable
    - `phone_number` string, nullable
    - `email` string, nullable
    - `case_id` string, uuid, nullable
    - `case_title` string, nullable
    - `is_qualified` boolean
    - `qualification_summary` string, nullable
    - `qualification_details` QualificationQA[], nullable
      - `question` string, required — The qualification question that was asked or evaluated
      - `answer` string, required — The caller's answer or the evaluated response from the transcript
    - `inquiry_reason` string, nullable
    - `trigger_metadata` object, nullable
    - `call_status` string, nullable
    - `has_call` boolean
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, nullable
  - `total` integer, required
  - `limit` integer, required
  - `offset` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/b642b91e0a5c/schema)
