---
title: "Get Chat Queue"
method: GET
path: "/v1/replica/{id}/chats/{chatId}/queue"
tags: ["Replica"]
---

# Get Chat Queue

`GET /v1/replica/{id}/chats/{chatId}/queue`

Returns queued messages for a chat. The currently processing message is not included.

## Path parameters

- `id` string, uuid, required
- `chatId` string, required

## Response `200`

Queue retrieved successfully

- ChatQueueResponse — Queued messages for a chat.
  - `chatId` string, required — Chat session ID.
  - `processing` boolean, required — Whether the chat is currently doing work — either processing a foreground message or running background/spawned-agent tasks.
  - `queue` QueuedMessageInfo[], required
    - `id` string, required — Unique queued message ID.
    - `message` string, required — Queued message text.
    - `queuedAt` string, date-time, required — When the message was queued.
    - `senderUserId` string — Identifier of the user who queued the message.
    - `senderEmail` string — Email of the user who queued the message.
    - `senderDisplayName` string — Display name of the user who queued the message.

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `404` — Resource not found
- `500` — Internal server error

---

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