Authorizations
API key passed in the header
Query Parameters
An optional browser session identifier to reference an existing running browser sessions. When passed, the tool will be executed on the provided browser session.
Body
The task to be autonomously completed.
"Collect the node names and their CPU average %"
The URL of the webpage. If not provided, the tool will use the current page in the session.
"https://anchorbrowser.io"
The AI agent to use for task completion. Defaults to browser-use.
browser-use
, openai-cua
"openai-cua"
The AI provider to use for task completion.
openai
, gemini
, groq
, azure
, xai
"openai"
Whether to highlight elements during task execution for better visibility.
true
JSON Schema defining the expected structure of the output data.
{
"type": "object",
"properties": {
"nodes_cpu_usage": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": { "type": "string" },
"cluster": { "type": "string" },
"cpu_avg_percentage": { "type": "number" }
},
"required": ["node", "cluster", "cpu_avg_percentage"]
}
}
},
"required": ["nodes_cpu_usage"]
}
Response
The result of the autonomous task.