v1

latestOpenAPI 3.1.0MIT2026-07-132429592.7 MB

Retrieve a ChatKit thread by its identifier.

get/chatkit/threads/{thread_id}

Path parameters

thread_idstring required
Example:cthr_123

Identifier of the ChatKit thread to retrieve.

Response

Success

idstring required

Identifier of the thread.

object'chatkit.thread' required

Type discriminator that is always chatkit.thread.

created_atinteger required

Unix timestamp (in seconds) for when the thread was created.

titlestring nullable required

Optional human-readable title for the thread. Defaults to null when no title has been generated.

userstring required

Free-form string that identifies your end user who owns the thread.

Example response

{
  "id": "cthr_def456",
  "object": "chatkit.thread",
  "created_at": 1712345600,
  "title": "Demo feedback",
  "status": {
    "type": "active"
  },
  "user": "user_456"
}