Fetches a URL that blocks normal requests with a 403, a CAPTCHA, or empty content, routing it through an anti-bot proxy. Returns the raw page body for you to parse; it cannot interact with the page.
A plain fetch returns a 403, a CAPTCHA, or empty/blocked content and you just need the raw body.
A page that needs clicks or typing (use Read interactive page), or a page that fetches fine (use Read a page, cheaper for clean Markdown).
1.875 credits / request
Set these inside the intent when you run it.
The URL that is being blocked and needs to be fetched through the proxy.
A country code for the proxy exit location, for region-gated content.
The raw page body (HTML, JSON, or text) as returned by the server after bypassing the block.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Generic Scrapers skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/web-scraping/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"unlock","url":"https://example.com/blocked-page","filter":"gb"}}'Example requests