List Conversations
GET
/api/copilotkit/conversations
const url = 'http://localhost:8000/api/copilotkit/conversations';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8000/api/copilotkit/conversationsList the caller’s chat conversations (scoped to workspace + user).
Authorizes via the same fail-closed path as the chat endpoint: cloud
requires a valid token + member workspace (401/403 otherwise); self-host
binds to the keyless main workspace.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example