Your agent can't parse a platform's tangled markup; these return clean, structured items from specific sites.
Web & Search
Extracts structured records from specific types of websites: social platforms, video sites, marketplaces, review sites, property listings, travel, and jobs. Each operation is purpose-built for its target, returning clean, typed records instead of raw HTML. Use this when you know which platform you want data from; use generic web scraping for arbitrary URLs.
You need structured items from a known platform such as social, maps, marketplaces, reviews, jobs, listings, or video.
Crawling arbitrary websites, pages behind your own login, or low-latency single lookups; use general web scraping or research for those.
Each is a sub-skill of Site Scrapers; the router picks the right one for your request.
information
Returns a list of structured records plus a count. A large run may come back in progress with a continuation to send straight back; it is not a downloadable file.
The platform or whether you want discovery by keyword versus detail on a known URL is unclear, and it changes the cost.
Skills run through one gateway with your Faro token. Hand it an intent in plain language; Faro routes to the right sub-skill, runs it, and bills per call.
curl -X POST "https://skill.askfaro.com/skills/site-scrapers/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"prompt":"Get the last 20 posts from this Instagram account"}}'Example requests