{ "opencollection": "1.0.0", "info": { "name": "Agno AgentOS Agents Sessions API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Sessions", "type": "folder" }, "items": [ { "info": { "name": "List sessions", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:7777/sessions", "params": [ { "name": "type", "value": "", "type": "query" }, { "name": "component_id", "value": "", "type": "query" }, { "name": "user_id", "value": "", "type": "query" }, { "name": "session_name", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "page", "value": "", "type": "query" }, { "name": "sort_by", "value": "", "type": "query" }, { "name": "sort_order", "value": "", "type": "query" } ] }, "docs": "Lists agent, team, or workflow sessions with filtering and pagination." }, { "info": { "name": "Create a new session", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:7777/sessions", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new session" }, { "info": { "name": "Get a session", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:7777/sessions/:session_id", "params": [ { "name": "session_id", "value": "", "type": "path" } ] }, "docs": "Get a session" }, { "info": { "name": "Delete a session", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:7777/sessions/:session_id", "params": [ { "name": "session_id", "value": "", "type": "path" } ] }, "docs": "Delete a session" }, { "info": { "name": "List runs in a session", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:7777/sessions/:session_id/runs", "params": [ { "name": "session_id", "value": "", "type": "path" } ] }, "docs": "List runs in a session" } ] } ], "bundled": true }