taikutaiku
User GuidePluginsAPI Reference
GET
/v1/sessions/{session_id}/remote/chat

Grab the last 100 chat messages. Each message has the sender's user ID, display name, and the message text.

Authorization

apiKeyAuth
X-Taiku-Token<token>

Your API key from taiku login. Also available as TAIKU_TOKEN env var.

In: header

Path Parameters

session_id*string

Query Parameters

client?integer

Optional target browser client ID. Useful when multiple clients are connected to the same session.

Range0 <= value

Response Body

application/json

text/plain

text/plain

text/plain

text/plain

text/plain

text/plain

curl -X GET "https://example.com/v1/sessions/string/remote/chat"
{  "result": [    [      1,      "nathan",      "anyone seeing that flaky test?"    ],    [      2,      "guest",      "yeah, it's the timeout in CI"    ]  ]}