List ChatKit threads
List ChatKit threads with optional pagination and user filters.
get/chatkit/threads
Query parameters
limitinteger
Maximum number of thread items to return. Defaults to 20.
order'asc' | 'desc'
Sort order for results by creation time. Defaults to desc.
afterstring
List items created after this thread item ID. Defaults to null for the first page.
List items created after this thread item ID. Defaults to null for the first page.
beforestring
List items created before this thread item ID. Defaults to null for the newest results.
List items created before this thread item ID. Defaults to null for the newest results.
userstring
Filter threads that belong to this user identifier. Defaults to null to return all users.
Filter threads that belong to this user identifier. Defaults to null to return all users.
Response
Success
Example response
{
"data": [
{
"id": "cthr_def456",
"object": "chatkit.thread",
"created_at": 1712345600,
"title": "Demo feedback",
"status": {
"type": "active"
},
"user": "user_456"
}
]
}