api-config.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "name": "keyword-search",
  3. "displayName": "Amazon 关键词查询",
  4. "description": "查询 Amazon 关键词的搜索量、搜索趋势、竞争度等数据。用于广告关键词推荐、趋势雷达、飙升卖点词分析。",
  5. "category": "voc",
  6. "version": "1.1.0",
  7. "endpoint": {
  8. "method": "POST",
  9. "url": "https://server.fmode.cn/api/voc/forward",
  10. "headers": {
  11. "Content-Type": "application/json",
  12. "Authorization": "Bearer r:858b3ee92314d5447d1fc3cdc10462d7"
  13. }
  14. },
  15. "parameters": {
  16. "type": "object",
  17. "required": [
  18. "Keyword"
  19. ],
  20. "properties": {
  21. "Keyword": {
  22. "type": "string",
  23. "description": "要查询的关键词,如 'reed diffuser'、'natural reed diffuser'、'candle warmer lamp aesthetic'"
  24. },
  25. "domain": {
  26. "type": "integer",
  27. "description": "Amazon 站点 ID: 1=amazon.com",
  28. "default": 1
  29. }
  30. }
  31. },
  32. "requestTransform": {
  33. "template": {
  34. "path": "/api/KeywordQuery",
  35. "method": "POST",
  36. "query": {
  37. "domain": "{{domain}}"
  38. },
  39. "body": {
  40. "Keyword": "{{Keyword}}"
  41. }
  42. }
  43. },
  44. "response": {
  45. "type": "object",
  46. "description": "关键词查询结果",
  47. "properties": {
  48. "SearchVolume": {
  49. "type": "integer",
  50. "description": "月搜索量"
  51. },
  52. "SearchVolumeGrowth": {
  53. "type": "number",
  54. "description": "搜索量增长率 (%)"
  55. },
  56. "CompetitionLevel": {
  57. "type": "string",
  58. "description": "竞争度: 低/中/高/极高"
  59. },
  60. "CPC": {
  61. "type": "number",
  62. "description": "建议广告出价 (美元)"
  63. },
  64. "ConversionRate": {
  65. "type": "number",
  66. "description": "转化率 (%)"
  67. },
  68. "RelatedKeywords": {
  69. "type": "array",
  70. "description": "相关关键词列表"
  71. }
  72. }
  73. },
  74. "usageExamples": [
  75. {
  76. "name": "查询关键词搜索量",
  77. "input": {
  78. "Keyword": "natural reed diffuser",
  79. "domain": 1
  80. },
  81. "description": "查询 'natural reed diffuser' 在美国站的搜索量和竞争度"
  82. }
  83. ],
  84. "reportMapping": {
  85. "slides": [
  86. "趋势雷达(Slide12)",
  87. "广告关键词引擎(Slide15)"
  88. ],
  89. "dataPoints": [
  90. "关键词搜索量",
  91. "增长率",
  92. "竞争度",
  93. "建议出价",
  94. "VOC匹配度"
  95. ]
  96. },
  97. "timeout": 10000,
  98. "retry": {
  99. "maxAttempts": 3,
  100. "delay": 1000,
  101. "backoffMultiplier": 2
  102. }
  103. }