Decodo

live DeveloperTechnology

Web scraping via the Decodo (formerly Smartproxy) Scraper API (bring your own credentials) — universal scraping with JS rendering, parsed Google search results, and Amazon product data.

3 tools
0ms auth
free tier 50 calls/day

Tools

decodo_scrape

Scrape any web page through Decodo (formerly Smartproxy) rotating proxies and return its content.

No parameters required.

Try it
decodo_amazon_product

Get structured Amazon product data via Decodo (formerly Smartproxy) — title, pricing, rating, reviews, images,

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/decodo/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/decodo/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"decodo_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("decodo_scrape", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("web scraping via the decodo (formerly smartproxy) scraper api (bring your own credentials) — universal scraping with js rendering, parsed google search results, and amazon product data");