Skip to main content
GET
https://api.usenotra.com
/
v1
/
chats
/
{chatId}
Get a single chat with messages
curl --request GET \
  --url https://api.usenotra.com/v1/chats/{chatId} \
  --header 'Authorization: Bearer <token>'
{
  "chat": {
    "chatId": "<string>",
    "title": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "pinnedAt": "<string>",
    "externalChannelId": {
      "id": "<string>"
    }
  },
  "messages": [
    "<unknown>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.usenotra.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API key in the Authorization header as Bearer API_KEY.

Path Parameters

chatId
string
required
Minimum string length: 1
Example:

"chat_abc123"

Response

Chat fetched successfully

chat
object
required
messages
any[]
required
Last modified on May 20, 2026