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

# Conversations List

`GET /api/v1/conversations/`

## Query parameters

- `page` integer, nullable — The page number from which to start (0-based)
- `limit` integer — The maximum number of items to return
- `search_fields` ConversationProperties[] — String names of fields to search. Correspond by index to search field values
- `search_field_values` string[] — Values of fields to search. Correspond by index to search fields. Unless field name contains "list", an individual search field value cannot be a list
- `order_by` 'timestamp' | 'agent_type' | 'agent_id' | 'agent_name' | 'prompt_id' | 'prompt_name' | 'llm_provider' | 'llm_model' | 'llm_version' | 'is_legacy'
- `order_by_direction` 'asc' | 'desc' — The direction in which to order list results, either ascending or descending.
- `fields` ConversationProperties[], nullable — The fields to include in the response
- `start_datetime` string, nullable — The start datetime for filtering results
- `end_datetime` string, nullable — The end datetime for filtering results

## Response `200`

Successful Response

- ListResponseConversation
  - `items` Conversation[], required — List of items returned from the query
    - `timestamp` string, date-time, required — Timestamp of the conversation
    - `conversation_id` string, required — ID of the conversation
    - `agent_id` string, nullable — ID of the agent with which the conversation occurred
    - `agent_name` string, nullable — Name of the agent with which the conversation occurred
    - `agent_type` string, nullable — Value of the "type" field of the agent with which the conversation occurred
    - `prompt_id` string, nullable — ID of the prompt used in the conversation
    - `prompt_name` string, nullable — Name of the prompt used in the conversation
    - `prompt_version` string, nullable — Version of the prompt used in the conversation
    - `llm_provider` string, nullable — Provider for the LLM used in the conversation (see PromptResponse.llm_config.provider)
    - `llm_model` string, nullable — Model for the LLM used in the conversation (see PromptResponse.llm_config.model)
    - `llm_version` string, nullable — Version for the LLM used in the conversation (see PromptResponse.llm_config.version)
    - `llm_temperature` number, nullable — Temperature for the LLM used in the conversation (see PromptResponse.llm_config.temperature)
    - `llm_seed` integer, nullable — Seed for the LLM used in the conversation (see PromptResponse.llm_config.seed).
    - `is_legacy` boolean, nullable — Whether the conversation occurred on the legacy Syllable system
  - `page` integer, required — The page number of the results (0-based)
  - `page_size` integer, required — The number of items returned per page
  - `total_pages` integer, nullable — The total number of pages of results given the indicated page size
  - `total_count` integer, nullable — The total number of items returned from the query

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/asksyllable/apis/syllablesdk.md) · [All operations](https://skmtc.net/asksyllable/apis/syllablesdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/asksyllable/syllablesdk/versions/ac3228f980bb/schema)
