{ "opencollection": "1.0.0", "info": { "name": "AnchorBrowser Agentic capabilities API", "version": "1.0.0" }, "items": [ { "info": { "name": "Agentic capabilities", "type": "folder" }, "items": [ { "info": { "name": "List Agent Resources", "type": "http" }, "http": { "method": "GET", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/agent/files", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The browser session ID" } ], "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "List all resources that have been uploaded to the browser session for agent use.\nReturns resource metadata including name, size, type, and last modified timestamp.\n" }, { "info": { "name": "Upload Agent Resources", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/agent/files", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The browser session ID" } ], "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" } ] }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Upload files as agent resources to a browser session using multipart/form-data. \nIf you upload a ZIP file, it will be automatically extracted and the files will be made available as agent resources.\nIf you upload a single file, it will be saved directly as an agent resource.\nResources are then accessible to AI agents for task completion and automation.\n" }, { "info": { "name": "Pause Agent", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:session_id/agent/pause", "params": [ { "name": "session_id", "value": "", "type": "path", "description": "The ID of the browser session" } ], "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Pauses the AI agent for the specified browser session." }, { "info": { "name": "Resume Agent", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:session_id/agent/resume", "params": [ { "name": "session_id", "value": "", "type": "path", "description": "The ID of the browser session" } ], "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Resumes the AI agent for the specified browser session." } ] } ], "bundled": true }