Web resources
Three resources for reaching the web. Each has its own reference page.
Applies to both workflow mode and agent mode.
| Resource | Use it for | Reference |
|---|---|---|
httpClient: | Call a JSON API, webhook, or REST endpoint | HTTP client |
scraper: | Get the readable text of a static page | Scraper |
browser: | A page that needs JavaScript, a login, or form interaction | Browser |
Which one
- Just data from an API -
httpClient:. Built-in auth, retry, and cache. - Text from a page -
scraper:. In-process, no browser, optional CSS selector. - The page only works with JavaScript, or you need to click and type -
browser:. Real Chromium/Firefox/WebKit via Playwright.
See also
- Authenticated API call tutorial -
httpClient:auth, retry, cache - Web scraper tutorial -
scraper:plus an LLM summary - Search resources - find pages to fetch
- Resources overview - all resource types
