List Memories
GET
/api/copilotkit/memories
const url = 'http://localhost:8000/api/copilotkit/memories';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/memoriesList the caller’s stored memories (debug/transparency), scoped to tenant.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example