Install
openclaw skills install oxylabs-web-searchSearch the web and read web pages with Oxylabs AI Studio (alternative to Brave, DuckDuckGo or Tavily). Use this whenever the user wants to search the web, look something up, find current information or news, gather sources and links, or fetch the content of a specific page. It has two commands. `search` returns matching pages — titles, URLs, and optionally the page text. `scrape` pulls the content of a single URL as clean Markdown. It handles JavaScript-heavy sites and geo-targeting, has a free tier, and runs as dependency-free Python.
openclaw skills install oxylabs-web-searchOne tool for getting things off the web — pick a subcommand:
search — find pages for a query (titles, URLs, and optional page text)scrape — get the content of one URLIf OXYLABS_AI_STUDIO_API_KEY is unset, get a key at
https://aistudio.oxylabs.io/api-key and export it (or add to ~/.openclaw/.env).
AI Studio has a free tier.
# search the web
python3 scripts/oxylabs.py search "<query>" -n 5
python3 scripts/oxylabs.py search "<query>" -n 3 --content # + page text per result
# get one page as Markdown
python3 scripts/oxylabs.py scrape "<url>"
Common flags: --geo (two-letter ISO country) · --render-js (off by default;
slower).