Agentic DevelopmentThreads

Read a thread's team chat

GET
/v1/threads/{id}/chat
AuthorizationBearer <token>

API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.

In: header

Path Parameters

id*string

Thread ULID

Query Parameters

cursor?string

Opaque pagination cursor from a previous response

limit?integer

Maximum number of items to return (1–100)

Formatint32
Range1 <= value <= 100
Default20

Response Body

application/json

application/problem+json

curl -X GET "https://example.com/v1/threads/string/chat"
{  "items": [    {      "author": "string",      "body": "string",      "created_at": "string",      "id": "string"    }  ],  "pagination": {    "has_more": true,    "next_cursor": "string",    "total_count": 0  }}