oxylabs_amazon_product
Pack: oxylabs · Endpoint: https://gateway.pipeworx.io/oxylabs/mcp
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 proxying and can take 10-30 seconds. BYOK: _apiKey is “username:password” from the Oxylabs dashboard. Example: oxylabs_amazon_product({ asin: “B08N5WRWNW”, domain: “com”, _apiKey: “myuser:mypass” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
asin | string | yes | The Amazon product ASIN (10-character ID), e.g. “B08N5WRWNW” |
domain | string | no | Amazon marketplace domain suffix: “com” (default), “co.uk”, “de”, “co.jp”, etc. |
_apiKey | string | yes | Oxylabs API credentials as “username:password” from the Oxylabs dashboard (https://dashboard.oxylabs.io). Free trial includes up to 2K results. |
Example call
Arguments
{
"asin": "B08N5WRWNW",
"_apiKey": "your-oxylabs-username:your-oxylabs-password"
}
curl
curl -X POST https://gateway.pipeworx.io/oxylabs/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"oxylabs_amazon_product","arguments":{"asin":"B08N5WRWNW","_apiKey":"your-oxylabs-username:your-oxylabs-password"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('oxylabs_amazon_product', {
"asin": "B08N5WRWNW",
"_apiKey": "your-oxylabs-username:your-oxylabs-password"
});
More examples
{
"asin": "B08N5WRWNW",
"domain": "co.uk",
"_apiKey": "your-oxylabs-username:your-oxylabs-password"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"oxylabs": {
"url": "https://gateway.pipeworx.io/oxylabs/mcp"
}
}
}
See Getting Started for client-specific install steps.