Runs a query against a search engine and returns the ranked result rows as structured data, including titles, URLs, and snippets. Use this when you want the raw list of what a search engine ranks, not a synthesized answer.
You want what Google, Bing, or another engine ranks for a query, as parsed results with titles, links, and snippets.
Reading the content of a result page (read it with Read a page), or answering a question directly (use Web Search).
1.875 credits / search
Set these inside the intent when you run it.
The search query to run.
A country code to localize the results (e.g. us, gb, de).
A list of ranked search result objects with title, URL, and snippet for each.
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":"search_engine","query":"best coffee grinders under $100","filter":"us"}}'Example requests