Skip to content
登录 注册

亚马逊产品

Amazon Product 返回单个 ASIN 的完整详情页数据,包括价格、图片、类别、变体和属性。

GET https://ecom.shifter.io/v1?engine=amazon&api_key=YOUR_API_KEY&type=product
ParameterTypeRequiredDescription
api_keystringyes您的 SERP API 密钥(与 Amazon 共用)。
enginestringyes必须为 amazon
typestringyes必须为 product
product_idstringyesAmazon 产品 ID(ASIN)。
domainstringno市场域名,默认 amazon.com
devicedesktop | mobileno模拟设备。

Amazon 通过 ASIN(Amazon Standard Identification Number)标识产品。您可以通过两种方式找到它:

  1. 在产品 URL 中,位于 /dp/ 之后(例如,https://www.amazon.com/dp/B08C1W5N87)。
  2. 在产品页面的 “Product Information” 或 “Additional Information” 部分。
Terminal window
curl "https://ecom.shifter.io/v1?engine=amazon&api_key=YOUR_API_KEY&type=product&product_id=B08C1W5N87"
{
"search_metadata": {
"engine": "amazon",
"amazon_domain": "amazon.com",
"type": "product",
"product_id": "B08C1W5N87"
},
"product": {
"title": "Fire TV Stick with Alexa Voice Remote",
"product_id": "B08C1W5N87",
"brand": "Amazon",
"price": { "current_price": "$19.99", "currency": "$" },
"rating": { "rating": 4.7, "total_ratings": 141438 },
"keywords": ["fire tv", "streaming device"],
"categories": [
{ "name": "Electronics", "link": "/electronics" },
{ "name": "Streaming Media Players" }
],
"images": [
"https://m.media-amazon.com/images/I/51KKR5uGn6L.jpg"
],
"attributes": [
{ "name": "Connectivity", "value": "Wi-Fi, HDMI" }
]
}
}