Read any web page

web_fetch is a $0.20 GET request on the Wuthering AI API. Fetch a page as clean markdown or raw HTML, including sites that block bots. It answers complete JSON, and a call that fails is not charged.

Endpoint

GET /v1/web_fetch

Price per successful call

$0.20

Failed calls

Not charged

curl 'https://wutheringai.com/v1/web_fetch?url=…&token=YOUR_TOKEN'

What does web_fetch return, and when should you call it?

Fetch a URL and return its content, as readable markdown by default or as raw HTML when you need the markup.

Handles pages that block automated access, which is what makes competitor pricing and documentation pages reachable at all. Choose markdown for reading and analysis; choose html only when structure matters, such as extracting a pricing table's cells or finding hidden elements, because html costs far more context.

Returns: the page content as text in the requested format.

Use to read a specific known page. Don't use to find pages, which is wuthering_web_search.

What parameters does web_fetch take?

web_fetch accepts 2 parameters, of which 1 is required. Array values are comma-separated on the query string.

Parameters accepted by the web_fetch operation
ParameterTypeRequiredDescription
urlstringyesThe full URL to fetch, including protocol. If you do not have the exact URL, find it with your own web search first (for example: site:acme.com pricing), or with wuthering_web_search if you have none. A guessed URL returns someone's 404 page as though it were content.
formatstringnomarkdown returns readable text and is the right default. html returns raw markup and costs substantially more context; use it only when you need the structure.One of: markdown, htmlDefaults to markdown

Reference for web_fetch · last updated · published by Wuthering AI