
前言
在跨境电商选品、多平台铺货、竞品价格监控的业务场景中,亚马逊商品详情API是开发者和跨境卖家最核心的结构化数据入口。它无需搭建复杂的海外代理爬虫体系,就能稳定获取全维度的亚马逊商品信息,大幅降低跨境电商相关业务的开发门槛。
新手跟着3步就能完成基础调用,没有复杂的前置依赖:
这是脱敏后的标准返回结构,完全匹配亚马逊PA-API的原生返回格式,核心字段都标注了业务含义,可直接用于开发调试参考:
{
"SearchResult": {
"TotalResults": 1,
"TotalPages": 1,
"Items": [
{
"ASIN": "B09XYZ1234",
"DetailPageURL": "https://www.amazon.com/dp/B09XYZ1234",
"ItemInfo": {
"Title": {
"DisplayValue": "2026新款便携式户外露营折叠椅 承重300磅 牛津布防水面料",
"Label": "Title"
},
"Brand": {
"DisplayValue": "CampPro",
"Label": "Brand"
},
"ByLineInfo": {
"Manufacturer": {
"DisplayValue": "CampPro Outdoor",
"Label": "Manufacturer"
}
},
"ProductInfo": {
"Color": {
"DisplayValue": "军绿色",
"Label": "Color"
},
"ItemDimensions": {
"Height": {
"DisplayValue": "27.5",
"Unit": "英寸"
},
"Weight": {
"DisplayValue": "5.2",
"Unit": "磅"
}
}
},
"Classifications": {
"Binding": {
"DisplayValue": "户外用品",
"Label": "Binding"
},
"ProductGroup": {
"DisplayValue": "户外露营装备",
"Label": "ProductGroup"
}
}
},
"Offers": {
"Listings": [
{
"Price": {
"Amount": 49.99,
"Currency": "USD",
"DisplayAmount": "$49.99"
},
"SavedPrice": {
"Amount": 20.00,
"Currency": "USD",
"DisplayAmount": "$20.00 (29% off)"
},
"Availability": {
"Type": "In Stock",
"Message": "现货,可立即发货"
},
"Condition": {
"Value": "New"
},
"DeliveryInfo": {
"IsAmazonFulfilled": true,
"IsFreeShippingEligible": true,
"ShippingDays": 2
}
}
]
},
"Images": {
"Primary": {
"Medium": {
"URL": "https://m.media-amazon.com/images/I/71xyz123.jpg",
"Height": 160,
"Width": 160
},
"Large": {
"URL": "https://m.media-amazon.com/images/I/71xyz123._AC_SL1500_.jpg",
"Height": 1500,
"Width": 1500
}
},
"Variants": [
{
"URL": "https://m.media-amazon.com/images/I/81abc456.jpg",
"Height": 1500,
"Width": 1500
},
{
"URL": "https://m.media-amazon.com/images/I/91def789.jpg",
"Height": 1500,
"Width": 1500
}
]
},
"CustomerReviews": {
"StarRating": {
"Value": 4.7,
"Count": 12560
}
},
"SalesRank": [
{
"Rank": 12,
"ContextName": "户外露营折叠椅类目"
}
]
}
]
},
"Errors": []
}原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。