Skip to content

Web Fetch

The web_fetch tool fetches a web page using a full browser with JavaScript rendering and returns its content as markdown.

Agents use web_fetch when they need to read the content of a specific URL.

web_fetch(url: "https://example.com/article")
ParameterTypeRequiredDescription
urlstringyesURL of the web page to fetch

The tool returns the page content as markdown text.

ScenarioTool
Reading an article or documentation pageweb_fetch
Filling out a form or clicking buttonsBrowser tools
Extracting data from a JavaScript-rendered pageBrowser tools
Quick content retrieval from a static pageweb_fetch
Logging into a websiteBrowser tools

For pages that require authentication or interaction (clicking, filling forms), use the browser automation tools instead.