---
title: "List Sessions"
method: GET
path: "/api/chat/sessions"
tags: ["v2", "chat", "chat"]
---

# List Sessions

`GET /api/chat/sessions`

List chat sessions for the authenticated user.

Returns a paginated list of chat sessions belonging to the current user,
ordered by most recently updated.

Args:
    user_id: The authenticated user's ID.
    limit: Maximum number of sessions to return (1-100).
    offset: Number of sessions to skip for pagination.

Returns:
    ListSessionsResponse: List of session summaries and total count.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- ListSessionsResponse — Response model for listing chat sessions.
  - `sessions` SessionSummaryResponse[], required
    - `id` string, required
    - `created_at` string, required
    - `updated_at` string, required
    - `title` string, nullable
    - `is_processing` boolean, required
  - `total` integer, required

## Other responses

- `401` — Authentication required
- `422` — Validation Error

## Changes

- **2026-04-30** `8c84efcb3afb` — 3 warning
  - removed the optional property `sessions/items/chat_status` from the response with the `200` status
  - removed the optional property `sessions/items/is_pinned` from the response with the `200` status
  - removed the optional property `sessions/items/source_platform` from the response with the `200` status

[Change history](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/changes/api/chat/sessions/get.md)

---

[API](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server.md) · [All operations](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/llms.txt) · [OpenAPI document](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/revisions/72eaad2d41b3?raw)
