|
|
@@ -13,7 +13,9 @@
|
|
|
},
|
|
|
"parameters": {
|
|
|
"type": "object",
|
|
|
- "required": ["ASIN"],
|
|
|
+ "required": [
|
|
|
+ "ASIN"
|
|
|
+ ],
|
|
|
"properties": {
|
|
|
"ASIN": {
|
|
|
"type": "string",
|
|
|
@@ -24,13 +26,25 @@
|
|
|
"type": "integer",
|
|
|
"description": "Amazon 站点 ID: 1=amazon.com, 2=amazon.co.uk, 3=amazon.de, 4=amazon.co.jp, 5=amazon.fr, 6=amazon.it, 7=amazon.es, 8=amazon.ca",
|
|
|
"default": 1,
|
|
|
- "enum": [1, 2, 3, 4, 5, 6, 7, 8]
|
|
|
+ "enum": [
|
|
|
+ 1,
|
|
|
+ 2,
|
|
|
+ 3,
|
|
|
+ 4,
|
|
|
+ 5,
|
|
|
+ 6,
|
|
|
+ 7,
|
|
|
+ 8
|
|
|
+ ]
|
|
|
},
|
|
|
"Trend": {
|
|
|
"type": "integer",
|
|
|
"description": "是否返回趋势数据: 1=是, 0=否",
|
|
|
"default": 1,
|
|
|
- "enum": [0, 1]
|
|
|
+ "enum": [
|
|
|
+ 0,
|
|
|
+ 1
|
|
|
+ ]
|
|
|
},
|
|
|
"QueryTrendStartDt": {
|
|
|
"type": "string",
|
|
|
@@ -49,7 +63,9 @@
|
|
|
"template": {
|
|
|
"path": "/api/ProductRequest",
|
|
|
"method": "POST",
|
|
|
- "query": { "domain": "{{domain}}" },
|
|
|
+ "query": {
|
|
|
+ "domain": "{{domain}}"
|
|
|
+ },
|
|
|
"body": {
|
|
|
"ASIN": "{{ASIN}}",
|
|
|
"Trend": "{{Trend}}",
|
|
|
@@ -62,43 +78,142 @@
|
|
|
"type": "object",
|
|
|
"description": "产品详情对象",
|
|
|
"properties": {
|
|
|
- "Title": { "type": "string", "description": "产品标题" },
|
|
|
- "Price": { "type": "number", "description": "当前售价(美元)" },
|
|
|
- "SalesPrice": { "type": "number", "description": "促销价(美元)" },
|
|
|
- "Brand": { "type": "string", "description": "品牌名称" },
|
|
|
- "StoreName": { "type": "string", "description": "店铺名称" },
|
|
|
- "Rating": { "type": "number", "description": "平均评分 (0-5)" },
|
|
|
- "RatingsCount": { "type": "integer", "description": "评论总数" },
|
|
|
- "fiveStartRatings": { "type": "number", "description": "5星评分百分比" },
|
|
|
- "fourStartRatings": { "type": "number", "description": "4星评分百分比" },
|
|
|
- "threeStartRatings": { "type": "number", "description": "3星评分百分比" },
|
|
|
- "twoStartRatings": { "type": "number", "description": "2星评分百分比" },
|
|
|
- "oneStartRatings": { "type": "number", "description": "1星评分百分比" },
|
|
|
- "MonthlySales": { "type": "integer", "description": "月销量估算" },
|
|
|
- "BSR": { "type": "integer", "description": "Best Sellers Rank 大类排名" },
|
|
|
- "Category": { "type": "array", "description": "类目层级" },
|
|
|
- "BsrCategory": { "type": "array", "description": "BSR 类目层级" },
|
|
|
- "Photo": { "type": "array", "description": "产品图片 URL 列表" },
|
|
|
- "Feature": { "type": "object", "description": "产品 Bullet Points 卖点" },
|
|
|
- "Description": { "type": "string", "description": "产品描述" },
|
|
|
- "Property": { "type": "string", "description": "产品属性(JSON 字符串)" },
|
|
|
- "VariationASIN": { "type": "array", "description": "变体 ASIN 列表" },
|
|
|
- "Size": { "type": "array", "description": "尺寸选项" },
|
|
|
- "ShipsFrom": { "type": "string", "description": "发货地" },
|
|
|
- "ProductType": { "type": "string", "description": "配送类型 (FBA/FBM)" },
|
|
|
- "DealType": { "type": "string", "description": "促销类型" },
|
|
|
- "UpdateDate": { "type": "string", "description": "数据更新日期" }
|
|
|
+ "Title": {
|
|
|
+ "type": "string",
|
|
|
+ "description": "产品标题"
|
|
|
+ },
|
|
|
+ "Price": {
|
|
|
+ "type": "number",
|
|
|
+ "description": "当前售价(美元)"
|
|
|
+ },
|
|
|
+ "SalesPrice": {
|
|
|
+ "type": "number",
|
|
|
+ "description": "促销价(美元)"
|
|
|
+ },
|
|
|
+ "Brand": {
|
|
|
+ "type": "string",
|
|
|
+ "description": "品牌名称"
|
|
|
+ },
|
|
|
+ "StoreName": {
|
|
|
+ "type": "string",
|
|
|
+ "description": "店铺名称"
|
|
|
+ },
|
|
|
+ "Rating": {
|
|
|
+ "type": "number",
|
|
|
+ "description": "平均评分 (0-5)"
|
|
|
+ },
|
|
|
+ "RatingsCount": {
|
|
|
+ "type": "integer",
|
|
|
+ "description": "评论总数"
|
|
|
+ },
|
|
|
+ "fiveStartRatings": {
|
|
|
+ "type": "number",
|
|
|
+ "description": "5星评分百分比"
|
|
|
+ },
|
|
|
+ "fourStartRatings": {
|
|
|
+ "type": "number",
|
|
|
+ "description": "4星评分百分比"
|
|
|
+ },
|
|
|
+ "threeStartRatings": {
|
|
|
+ "type": "number",
|
|
|
+ "description": "3星评分百分比"
|
|
|
+ },
|
|
|
+ "twoStartRatings": {
|
|
|
+ "type": "number",
|
|
|
+ "description": "2星评分百分比"
|
|
|
+ },
|
|
|
+ "oneStartRatings": {
|
|
|
+ "type": "number",
|
|
|
+ "description": "1星评分百分比"
|
|
|
+ },
|
|
|
+ "MonthlySales": {
|
|
|
+ "type": "integer",
|
|
|
+ "description": "月销量估算"
|
|
|
+ },
|
|
|
+ "BSR": {
|
|
|
+ "type": "integer",
|
|
|
+ "description": "Best Sellers Rank 大类排名"
|
|
|
+ },
|
|
|
+ "Category": {
|
|
|
+ "type": "array",
|
|
|
+ "description": "类目层级"
|
|
|
+ },
|
|
|
+ "BsrCategory": {
|
|
|
+ "type": "array",
|
|
|
+ "description": "BSR 类目层级"
|
|
|
+ },
|
|
|
+ "Photo": {
|
|
|
+ "type": "array",
|
|
|
+ "description": "产品图片 URL 列表"
|
|
|
+ },
|
|
|
+ "Feature": {
|
|
|
+ "type": "object",
|
|
|
+ "description": "产品 Bullet Points 卖点"
|
|
|
+ },
|
|
|
+ "Description": {
|
|
|
+ "type": "string",
|
|
|
+ "description": "产品描述"
|
|
|
+ },
|
|
|
+ "Property": {
|
|
|
+ "type": "string",
|
|
|
+ "description": "产品属性(JSON 字符串)"
|
|
|
+ },
|
|
|
+ "VariationASIN": {
|
|
|
+ "type": "array",
|
|
|
+ "description": "变体 ASIN 列表"
|
|
|
+ },
|
|
|
+ "Size": {
|
|
|
+ "type": "array",
|
|
|
+ "description": "尺寸选项"
|
|
|
+ },
|
|
|
+ "ShipsFrom": {
|
|
|
+ "type": "string",
|
|
|
+ "description": "发货地"
|
|
|
+ },
|
|
|
+ "ProductType": {
|
|
|
+ "type": "string",
|
|
|
+ "description": "配送类型 (FBA/FBM)"
|
|
|
+ },
|
|
|
+ "DealType": {
|
|
|
+ "type": "string",
|
|
|
+ "description": "促销类型"
|
|
|
+ },
|
|
|
+ "UpdateDate": {
|
|
|
+ "type": "string",
|
|
|
+ "description": "数据更新日期"
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
"usageExamples": [
|
|
|
{
|
|
|
"name": "查询单个产品详情",
|
|
|
- "input": { "ASIN": "B0CSVRWJ1H", "domain": 1, "Trend": 1 },
|
|
|
+ "input": {
|
|
|
+ "ASIN": "B0CSVRWJ1H",
|
|
|
+ "domain": 1,
|
|
|
+ "Trend": 1
|
|
|
+ },
|
|
|
"description": "获取美国站产品 B0CSVRWJ1H 的完整信息和趋势数据"
|
|
|
}
|
|
|
],
|
|
|
"reportMapping": {
|
|
|
- "slides": ["市场全景(Slide3)", "竞品对标(Slide4)", "品类矩阵(Slide6)"],
|
|
|
- "dataPoints": ["价格", "评分", "月销量", "BSR", "品牌", "类目"]
|
|
|
+ "slides": [
|
|
|
+ "市场全景(Slide3)",
|
|
|
+ "竞品对标(Slide4)",
|
|
|
+ "品类矩阵(Slide6)"
|
|
|
+ ],
|
|
|
+ "dataPoints": [
|
|
|
+ "价格",
|
|
|
+ "评分",
|
|
|
+ "月销量",
|
|
|
+ "BSR",
|
|
|
+ "品牌",
|
|
|
+ "类目"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "timeout": 10000,
|
|
|
+ "retry": {
|
|
|
+ "maxAttempts": 3,
|
|
|
+ "delay": 1000,
|
|
|
+ "backoffMultiplier": 2
|
|
|
}
|
|
|
}
|