| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- {
- "name": "keyword-search",
- "displayName": "Amazon 关键词查询",
- "description": "查询 Amazon 关键词的搜索量、搜索趋势、竞争度等数据。用于广告关键词推荐、趋势雷达、飙升卖点词分析。",
- "category": "voc",
- "version": "1.1.0",
- "endpoint": {
- "method": "POST",
- "url": "https://server.fmode.cn/api/voc/forward",
- "headers": {
- "Content-Type": "application/json",
- "Authorization": "Bearer r:858b3ee92314d5447d1fc3cdc10462d7"
- }
- },
- "parameters": {
- "type": "object",
- "required": [
- "Keyword"
- ],
- "properties": {
- "Keyword": {
- "type": "string",
- "description": "要查询的关键词,如 'reed diffuser'、'natural reed diffuser'、'candle warmer lamp aesthetic'"
- },
- "domain": {
- "type": "integer",
- "description": "Amazon 站点 ID: 1=amazon.com",
- "default": 1
- }
- }
- },
- "requestTransform": {
- "template": {
- "path": "/api/KeywordQuery",
- "method": "POST",
- "query": {
- "domain": "{{domain}}"
- },
- "body": {
- "Keyword": "{{Keyword}}"
- }
- }
- },
- "response": {
- "type": "object",
- "description": "关键词查询结果",
- "properties": {
- "SearchVolume": {
- "type": "integer",
- "description": "月搜索量"
- },
- "SearchVolumeGrowth": {
- "type": "number",
- "description": "搜索量增长率 (%)"
- },
- "CompetitionLevel": {
- "type": "string",
- "description": "竞争度: 低/中/高/极高"
- },
- "CPC": {
- "type": "number",
- "description": "建议广告出价 (美元)"
- },
- "ConversionRate": {
- "type": "number",
- "description": "转化率 (%)"
- },
- "RelatedKeywords": {
- "type": "array",
- "description": "相关关键词列表"
- }
- }
- },
- "usageExamples": [
- {
- "name": "查询关键词搜索量",
- "input": {
- "Keyword": "natural reed diffuser",
- "domain": 1
- },
- "description": "查询 'natural reed diffuser' 在美国站的搜索量和竞争度"
- }
- ],
- "reportMapping": {
- "slides": [
- "趋势雷达(Slide12)",
- "广告关键词引擎(Slide15)"
- ],
- "dataPoints": [
- "关键词搜索量",
- "增长率",
- "竞争度",
- "建议出价",
- "VOC匹配度"
- ]
- },
- "timeout": 10000,
- "retry": {
- "maxAttempts": 3,
- "delay": 1000,
- "backoffMultiplier": 2
- }
- }
|