scraperapi_amazon_product
Pack: scraperapi · Endpoint: https://gateway.pipeworx.io/scraperapi/mcp
Get structured Amazon product data by ASIN — title, price, rating, reviews count, features, images, availability.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
asin | string | yes | Amazon ASIN (product identifier), e.g. “B0BFC7WQ6R” |
country | string | no | Two-letter country code for proxy geotargeting, e.g. “us”, “gb”. Optional. |
tld | string | no | Amazon marketplace top-level domain, e.g. “com”, “co.uk”, “de”. Optional (default com). |
_apiKey | string | yes | ScraperAPI key |
Example call
Arguments
{
"asin": "B0BFC7WQ6R",
"_apiKey": "your-scraperapi-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/scraperapi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scraperapi_amazon_product","arguments":{"asin":"B0BFC7WQ6R","_apiKey":"your-scraperapi-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('scraperapi_amazon_product', {
"asin": "B0BFC7WQ6R",
"_apiKey": "your-scraperapi-api-key"
});
More examples
{
"asin": "B0BFC7WQ6R",
"country": "gb",
"tld": "co.uk",
"_apiKey": "your-scraperapi-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"scraperapi": {
"url": "https://gateway.pipeworx.io/scraperapi/mcp"
}
}
}
See Getting Started for client-specific install steps.