Last updated 21 days ago
Get agent conversations
Agent conversations
const response = await fetch('https://www.taskade.com/api/v1/agents/{agentId}/convos/', { method: 'GET', headers: {}, }); const data = await response.json();
{ "ok": true, "items": [ { "id": "text", "space_agent_id": "text", "status": "in_progress", "title": "text", "data": { "llm": { "type": "openai", "name": "gpt-3.5-turbo" } } } ] }