---
title: "Get Conversations"
method: GET
path: "/chat/conversations/{user_id}"
tags: ["chat", "chat"]
---

# Get Conversations

`GET /chat/conversations/{user_id}`

Get conversations for a user with pagination support.

Returns an envelope `{conversations, next_cursor, has_more}` when a cursor
is supplied; for backwards compatibility, returns a bare list when only
`offset` is used (existing clients pre-cursor support).

## Path parameters

- `user_id` string, required

## Query parameters

- `limit` integer — Number of conversations to return
- `offset` integer — Number of conversations to skip (legacy — prefer cursor)
- `cursor` string, nullable — Opaque cursor returned as `next_cursor` from a previous page. Format: '<iso_timestamp>|<conversation_id>'. When supplied, the server returns conversations strictly before this point, ordered by last-activity desc. Beats offset for users with thousands of conversations — no row re-scan.

## Headers

- `authorization` string, nullable

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/fluentea/apis/aurqa-language-learning-platform-refactored.md) · [All operations](https://skmtc.dev/fluentea/apis/aurqa-language-learning-platform-refactored/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fluentea/aurqa-language-learning-platform-refactored/revisions/78f314acd8bf/schema)
