Amazon Seller Products
Amazon Seller Products returns the catalog of products offered by a given Amazon seller, with prices, ratings, and shipping details. Use page for pagination.
Endpoint
Section titled “Endpoint” GET https://ecom.shifter.io/v1?engine=amazon&api_key=YOUR_API_KEY&type=seller_products
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | string | yes | Your SERP API key (shared with Amazon). |
engine | string | yes | Must be amazon. |
type | string | yes | Must be seller_products. |
seller_id | string | yes | The Amazon seller ID (for example, AAZRLVTNON75Z). |
domain | string | no | Marketplace domain, default amazon.com. |
device | desktop | mobile | no | Simulated device. |
page | integer | no | Results page number. |
Example request
Section titled “Example request”curl "https://ecom.shifter.io/v1?engine=amazon&api_key=YOUR_API_KEY&type=seller_products&seller_id=AAZRLVTNON75Z"import requests
params = { "engine": "amazon", "api_key": "YOUR_API_KEY", "type": "seller_products", "seller_id": "AAZRLVTNON75Z",}r = requests.get("https://ecom.shifter.io/v1", params=params)data = r.json()import fetch from 'node-fetch';
const url = 'https://ecom.shifter.io/v1?' + new URLSearchParams({ engine: 'amazon', api_key: 'YOUR_API_KEY', type: 'seller_products', seller_id: 'AAZRLVTNON75Z',});
const res = await fetch(url);const data = await res.json();Example response
Section titled “Example response”{ "search_parameters": { "amazon_url": "https://www.amazon.com/s?me=AAZRLVTNON75Z", "engine": "amazon", "amazon_domain": "amazon.com", "type": "seller_products", "seller_id": "AAZRLVTNON75Z" }, "search_results": { "product_results": [ { "position": 1, "product_id": "B01NGTV4J5", "title": "Cascade Platinum Dishwasher Pods", "link": "https://www.amazon.com/dp/B01NGTV4J5", "thumbnail": "https://m.media-amazon.com/images/I/71-268JmbAL.jpg", "price": "$38.88", "currency": "$", "shipping_details": ["FREE delivery May 2 - 5"] }, { "position": 2, "product_id": "B000SDKDM4", "title": "Lavazza Super Crema Whole Bean Coffee Blend", "price": "$36.64", "bestseller": { "category": "in Roasted Coffee Beans" } } ] }, "pagination": { "current_page": 1, "has_next_page": true, "next_page": 2 }}