---
title: "List messages in a chat room"
method: GET
path: "/api/v1/me/chats/{chat_id}/messages"
tags: ["humanApiMessages"]
---

# List messages in a chat room

`GET /api/v1/me/chats/{chat_id}/messages`

Returns a paginated list of ALL messages in a chat room where you are a participant.

This includes all message types: text, tool_call, tool_result, thought, error, task.
Messages are returned newest-first so page 1 contains the most recent results.
Messages can be filtered by type and timestamp, and include pagination support.

Use the `message_type` parameter to filter by specific type(s).

## Pagination

Use `cursor` + `limit` for cursor-based pagination (recommended). The response
`metadata` includes `next_cursor` and `has_more`.

Note: `since` and `cursor` cannot be combined. Use one or the other.

`page` and `page_size` are deprecated and will be removed in API 2.0.0 (2026-10-01).

Returns 404 if the chat room doesn't exist or you're not a participant (security-first: doesn't leak room existence).

## Path parameters

- `chat_id` string, uuid, required

## Query parameters

- `cursor` string
- `limit` integer
- `page` integer
- `page_size` integer
- `message_type` 'text' | 'tool_call' | 'tool_result' | 'thought' | 'error' | 'task' | 'attention' | 'system' | 'participant' — Filter by message type
- `since` string, date-time

## Headers

- `X-API-Key` string, required

## Response `200`

Chat Messages

- MessagesListMyChatMessagesResponse200 — unresolved $ref

## Other responses

- `401` — Unauthorized
- `404` — Not Found - Room doesn't exist or you're not a participant
- `422` — Validation Error

## Changes

- **2026-08-26** `3cff423845a2` — 2 info
  - added the new enum value `participant` to the `query` request parameter `message_type`
  - added the new enum value `system` to the `query` request parameter `message_type`
- **2026-08-22** `d4b03725c5d7` — 5 warning, 2 info
  - for the `query` request parameter `limit`, the max was set to `100.00`
  - for the `query` request parameter `page_size`, the max was set to `100.00`
  - for the `query` request parameter `limit`, the min was set to `1.00`
  - for the `query` request parameter `page`, the min was set to `1.00`
  - …3 more

[Change history](https://skmtc.dev/band/apis/request-api/changes/api/v1/me/chats/:chat_id/messages/get.md)

---

[API](https://skmtc.dev/band/apis/request-api.md) · [All operations](https://skmtc.dev/band/apis/request-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/band/request-api/revisions/3cff423845a2/schema)
