decodo_amazon_product

Pack: decodo · Endpoint: https://gateway.pipeworx.io/decodo/mcp

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

Parameters

NameTypeRequiredDescription
urlstringnoFull Amazon product page URL, e.g. “https://www.amazon.com/dp/B09H74FXNW”. Provide this or asin.
asinstringnoAmazon ASIN (product identifier), e.g. “B09H74FXNW”. Used to build the product URL when url is omitted.
domainstringnoAmazon marketplace domain used with asin, e.g. “com” (default), “co.uk”, “de”.
geostringnoProxy exit location as a location name, e.g. “United States”. Optional.
_apiKeystringyesDecodo Web Scraping API credentials as “username:password” (from https://dashboard.decodo.com).

Example call

Arguments

{
  "asin": "B09H74FXNW",
  "_apiKey": "your-decodo-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/decodo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"decodo_amazon_product","arguments":{"asin":"B09H74FXNW","_apiKey":"your-decodo-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('decodo_amazon_product', {
  "asin": "B09H74FXNW",
  "_apiKey": "your-decodo-api-key"
});

More examples

{
  "url": "https://www.amazon.com/dp/B09H74FXNW",
  "geo": "United States",
  "_apiKey": "your-decodo-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "decodo": {
      "url": "https://gateway.pipeworx.io/decodo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026