Oxylabs

live DeveloperTechnology

Web scraping via the Oxylabs Web Scraper API (bring your own credentials) — universal scraping with JS rendering plus parsed Google search and Amazon product results.

3 tools
0ms auth
free tier 50 calls/day

Tools

oxylabs_scrape

Scrape any URL via the Oxylabs Web Scraper API (rotating proxies, anti-bot handling) and return the page HTML with its upstream status code. Set render_js:true to load the page in a headless browser f

No parameters required.

Try it
oxylabs_amazon_product

Fetch structured Amazon product data by ASIN via the Oxylabs Web Scraper API — Amazon structured scraping: title, price, currency, rating, reviews count, stock/availability. Calls are synchronous prox

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/oxylabs/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/oxylabs/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"oxylabs_scrape","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("oxylabs_scrape", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("web scraping via the oxylabs web scraper api (bring your own credentials) — universal scraping with js rendering plus parsed google search and amazon product results");