---
title: "List Inquiries"
method: GET
path: "/inquiries/"
tags: ["Inquiries"]
---

# List Inquiries

`GET /inquiries/`

List inquiries for the current user's customer.

Returns inquiries ordered by call created_at descending (newest first).
Supports filtering by search and notification status.

## Query parameters

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

## Response `200`

Successful Response

- InquiryListResponse — Response for listing inquiries with pagination.
  - `inquiries` InquiryWithCallResponse[], required
    - `inquiry_id` string, uuid, required
    - `customer_id` string, uuid, required
    - `call_id` string, uuid, nullable
    - `conversation_id` string, uuid, nullable
    - `first_name` string, nullable
    - `last_name` string, nullable
    - `phone_number` string, nullable
    - `email` string, nullable
    - `inquiry_description` string, nullable
    - `subject_line` string, nullable
    - `requires_followup` boolean, nullable
    - `followup_reasoning` string, nullable
    - `notification_emails_sent` boolean, required
    - `notification_sms_sent` boolean, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, nullable
    - `call_created_at` string, date-time, nullable
    - `call_direction` string, nullable
    - `is_test` boolean
  - `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/4a81645b59f6/schema)
