v10

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-0643140398.0 KB
Tools

Web Fetch

Fetch and extract content from a specified web URL.

post/v1/tools/web-fetch

Request body

urlstring required

The URL of the web page to fetch and extract content from.

Example request

{
  "url": "https://example.com/article"
}

Response

Web content fetched successfully.

is_errorboolean

True if the tool encountered an error during execution.

Example response

{
  "content": [
    {
      "text": "The analysis shows that Q4 revenue increased by 25% compared to Q3.",
      "type": "text"
    }
  ],
  "is_error": false
}