POST
/
tools
/
ask-webpage
curl --request POST \
  --url https://connect.anchorbrowser.io/tools/ask-webpage \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "https://anchorbrowser.io",
  "question": "What does that product do?"
}'
{
  "answer": "Anchor Browser is a Secure Browser for AI Agents, used to automated actions across the web."
}

Authorizations

apiKey
string
query
required

API key passed as a query parameter

Query Parameters

sessionId
string

An optional session identifier to reference an existing running session. If provided, the tool will execute within that session.

Body

application/json
url
string

The URL of the webpage to fetch content from. When left empty, the current webpage is used.

Example:

"https://anchorbrowser.io"

question
string

Question about the content of the webpage.

Example:

"What does that product do?"

Response

200
application/json
The answer to the provided question based on the website content.
answer
string

The answer to the provided question based on the website content.

Example:

"Anchor Browser is a Secure Browser for AI Agents, used to automated actions across the web."