GET
/
chat
/
messages
/
get
curl --request GET \
  --url https://api.qtzl.ai/chat/messages/get \
  --header 'api-key: <api-key>'
{
  "result": "ok",
  "messages": [
    {
      "participant": "<string>",
      "content": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "translations": {
        "es-ES": "Absolutamente"
      }
    }
  ]
}

Retrieve a log of your existing chat, alongside their translations.

Authorizations

api-key
string
header
required

API key authentication. You can obtain your API key by registering on your project dashboard.

Query Parameters

chat_id
string
required

Quetzal chat ID (ex: QTZLC001) or external ID of the chat

limit
integer

Maximum number of messages to return

before
string

Timestamp to fetch messages before

after
string

Timestamp to fetch messages after

wait
enum<string>
default:false

Whether to wait for translations to be ready

Available options:
true,
false

Response

200
application/json
Chat messages retrieved successfully
result
string
Example:

"ok"

messages
object[]