{ "opencollection": "1.0.0", "info": { "name": "AnchorBrowser Agentic capabilities OS Level Control API", "version": "1.0.0" }, "items": [ { "info": { "name": "OS Level Control", "type": "folder" }, "items": [ { "info": { "name": "Take Screenshot", "type": "http" }, "http": { "method": "GET", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/screenshot", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Takes a screenshot of the current browser session and returns it as an image." }, { "info": { "name": "Mouse Click", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/mouse/click", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Performs a mouse click at the specified coordinates" }, { "info": { "name": "Mouse Double Click", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/mouse/doubleClick", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Performs a double click at the specified coordinates" }, { "info": { "name": "Mouse Down", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/mouse/down", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Performs a mouse button down action at the specified coordinates" }, { "info": { "name": "Mouse Up", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/mouse/up", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Performs a mouse button up action at the specified coordinates" }, { "info": { "name": "Mouse Move", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/mouse/move", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Moves the mouse cursor to the specified coordinates" }, { "info": { "name": "Drag and Drop", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/drag-and-drop", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Performs a drag and drop operation from start coordinates to end coordinates" }, { "info": { "name": "Scroll", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/scroll", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Performs a scroll action at the specified coordinates" }, { "info": { "name": "Type Text", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/keyboard/type", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Types the specified text with optional delay between keystrokes" }, { "info": { "name": "Keyboard Shortcut", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/keyboard/shortcut", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Performs a keyboard shortcut using the specified keys" }, { "info": { "name": "Get Clipboard Content", "type": "http" }, "http": { "method": "GET", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/clipboard", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Retrieves the current content of the clipboard" }, { "info": { "name": "Set Clipboard Content", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/clipboard", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Sets the content of the clipboard" }, { "info": { "name": "Copy Selected Text", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/copy", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Copies the currently selected text to the clipboard" }, { "info": { "name": "Paste Text", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/paste", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Pastes text at the current cursor position" }, { "info": { "name": "Navigate to URL", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/sessions/:sessionId/goto", "params": [ { "name": "sessionId", "value": "", "type": "path", "description": "The ID of the browser session" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Navigates the browser session to the specified URL" } ] } ], "bundled": true }