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

# List Conversations

`GET /conversations`

**Available for**: Chatflow, New Agent, Chatbot, Agent apps.

Lists an end user's conversations, most recently active first.

## Query parameters

- `user` string
- `last_id` string
- `limit` integer
- `sort_by` 'created_at' | '-created_at' | 'updated_at' | '-updated_at'

## Response `200`

Successfully retrieved conversations list.

- ConversationsListResponse
  - `limit` integer — Number of items per page.
  - `has_more` boolean — Whether there are more conversations.
  - `data` ConversationListItem[] — List of conversations.
    - `id` string, uuid — Conversation ID.
    - `name` string — Conversation name.
    - `inputs` object — Input variables for the conversation.
    - `status` string — Conversation status. `normal` for active conversations.
    - `introduction` string — Conversation introduction.
    - `created_at` integer — Creation timestamp.
    - `updated_at` integer — Last update timestamp.

## Other responses

- `400` — `not_chat_app` : App mode does not match the API route.
- `404` — `not_found` : Last conversation does not exist (invalid `last_id`).

---

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