---
title: "List Conversations"
method: GET
path: "/conversations"
tags: ["Conversations"]
---

# List Conversations

`GET /conversations`

Retrieve the list of conversations based on the provided filters and pagination.

## Query parameters

- `team_id` string, uuid
- `date_created_from` string, date-time
- `date_created_to` string, date-time
- `date_updated_from` string, date-time
- `date_updated_to` string, date-time
- `name` string
- `kb_id` string, uuid
- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- ConversationListResponse
  - `results` ConversationResponse[], required
    - `id` string, uuid, required
    - `kb_id` string, uuid, required
    - `name` string
    - `date_created` string, date-time, required
    - `date_updated` string, date-time, required
    - `form_data` ConversationInputField[]
      - `input_name` string, required — The name of the input field.
      - `input_type` string, required — The type of the input field.
      - `input_label` string, required — The label of the input field.
      - `input_placeholder` string, required — The placeholder of the input field.
      - `is_mandatory` boolean, required — Flag indicating whether the input field is mandatory.
      - `input_value` string — The value of the input field.
    - `user_id` string, uuid, required
    - `has_not_answered_questions` boolean, required
    - `agent_responding` boolean
    - `medium` 'whatsapp' | 'danteembededd'
    - `last_model_used` 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-4-omnimodel-mini' | 'gpt-4-omnimodel' | 'gpt-4-omnimodel-128k' | 'gpt-4-turbo' | 'gpt-4-turbo-128k' | 'gpt-4' | 'gpt-4-32k' | 'gpt-3.5-turbo' | 'gpt-3.5-turbo-1106' | 'gpt-3.5-turbo-16k' | 'falcon' | 'mistral' | 'wizardlm' | 'gemma' | 'llama2' | 'llama3' | 'llama3_8b' | 'cohere' | 'claude_3_opus_9k' | 'claude_3_opus_32k' | 'claude_3_opus_128k' | 'claude_3_opus_200k' | 'claude_3_sonnet' | 'claude_3_dot_5_sonnet' | 'claude_3_haiku' | 'claude_3_dot_7_sonnet' | 'claude_4_opus' | 'claude_4_sonnet' | 'gemini-2.0-flash' | 'gemini-2.5-flash' | 'gemini-2.0-flash-lite' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'claude_4_dot_5_sonnet' | 'claude_4_dot_1_opus' | 'claude_4_dot_5_haiku' | 'gemini-2.5-pro' | 'gemini-2.5-flash-lite' | 'gpt-5.1' | 'gemini-3-pro' | 'gpt-5.2' | 'gpt-5.4' | 'gemini-3-flash' | 'claude_4_dot_6_opus' | 'claude_4_6_sonnet' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'gpt-5.5' | 'gpt-5.6-sol' | 'gpt-5.6-terra' | 'gpt-5.6-luna' | 'claude_4_7_opus' | 'claude_4_8_opus' | 'claude_5_opus' | 'claude_5_sonnet' — An enumeration.
  - `pagination` Pagination, required
    - `limit` integer
    - `offset` integer
  - `filters` ConversationFilter, required
    - `date_created_from` string, date-time
    - `date_created_to` string, date-time
    - `date_updated_from` string, date-time
    - `date_updated_to` string, date-time
    - `name` string
    - `kb_id` string, uuid
  - `total_count` integer

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/dante-ai/apis/dante-ai-api.md) · [All operations](https://skmtc.net/dante-ai/apis/dante-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dante-ai/dante-ai-api/revisions/38b6c9a4246d/schema)
