Chats
List Messages
Returns metadata for every message in the chat. The response does
not include message content; clients fetch one message at a time
via GET /v1/chats/{id}/messages/{mid} when they need the body.
GET
Error
Authorizations
Personal Access Token, sent verbatim as pat_<32 chars>. PATs are
minted from the Chief settings UI.
Headers
Project identifier scoping the request. Required on every
project-scoped public endpoint. Missing or malformed values respond
with HTTP 400 and code publicapi.tenancy.project.missing.
Pattern:
^project_[a-z0-9]{20}$Path Parameters
Chat identifier.
Pattern:
^chat_[a-z0-9]{20}$Response
Message metadata.
Previous
Send MessageAppends a new turn to the chat. Returns immediately with the new
`message_id`; poll `GET /v1/chats/{id}/messages/{message_id}` for
terminal status.
Body shape mirrors `POST /v1/chats` minus the chat-creation
fields — the chat id comes from the path.
Next
Error