Fetch a URL from the user's machine
fetch_url_locallyFetches a web page over the user's own internet connection after built-in fetch fails with 403, 429, Cloudflare, geo-restriction, paywall, or local-network access, then returns readable text with a verdict on success.
Instructions
Fetch a web page over the user's own internet connection and return its readable text.
USE THIS WHEN the built-in web fetch has already been tried and: it returned an error, 403, or 429; it returned a Cloudflare or captcha interstitial; it returned a cookie/consent wall or a near-empty page; the source is geo-restricted; the source sits behind the user's institutional access or paid subscription; or the URL is on the user's local network.
DO NOT use it as the first attempt for ordinary public pages -- the built-in fetcher is faster and does not use the user's bandwidth.
The response carries a verdict line. If the verdict is not 'ok', the body is an interstitial rather than the article and must not be summarised as though it were the content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| max_chars | No | ||
| use_session | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |