api-config.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. "name": "douyin-video-comments",
  3. "displayName": "抖音视频评论查询",
  4. "description": "获取抖音视频的用户评论列表,支持翻页。直接反映用户对产品/内容的真实评价,是VOC情感分析、痛点挖掘、需求发现的核心数据源。",
  5. "category": "douyin",
  6. "version": "1.3.0",
  7. "endpoint": {
  8. "method": "GET",
  9. "url": "https://server.fmode.cn/api/voc-social/douyin/app/v3/fetch_video_comments",
  10. "headers": {
  11. "Authorization": "Bearer r:a5a19ea9868043b15d9b10423234ca43",
  12. "Accept": "application/json"
  13. }
  14. },
  15. "parameters": {
  16. "type": "object",
  17. "required": [
  18. "aweme_id"
  19. ],
  20. "properties": {
  21. "aweme_id": {
  22. "type": "string",
  23. "description": "抖音作品 ID"
  24. },
  25. "cursor": {
  26. "type": "integer",
  27. "description": "分页游标,首次传 0,后续使用上次返回的 cursor 值",
  28. "default": 0
  29. },
  30. "count": {
  31. "type": "integer",
  32. "description": "每页数量,请保持默认值 20",
  33. "default": 20
  34. }
  35. }
  36. },
  37. "requestTransform": {
  38. "queryParams": {
  39. "aweme_id": "{{aweme_id}}",
  40. "cursor": "{{cursor}}",
  41. "count": "{{count}}"
  42. }
  43. },
  44. "response": {
  45. "type": "object",
  46. "description": "评论数据列表",
  47. "properties": {
  48. "comments": {
  49. "type": "array",
  50. "description": "评论列表"
  51. },
  52. "has_more": {
  53. "type": "boolean",
  54. "description": "是否有更多评论"
  55. },
  56. "cursor": {
  57. "type": "integer",
  58. "description": "下一页游标"
  59. },
  60. "total": {
  61. "type": "integer",
  62. "description": "评论总数"
  63. }
  64. }
  65. },
  66. "usageExamples": [
  67. {
  68. "name": "爆款视频用户声音采集",
  69. "input": {
  70. "aweme_id": "7448118827402972455",
  71. "cursor": 0,
  72. "count": 20
  73. },
  74. "description": "获取爆款视频前20条评论,提取用户对产品的真实评价和购买意愿"
  75. },
  76. {
  77. "name": "翻页采集更多评论",
  78. "input": {
  79. "aweme_id": "7448118827402972455",
  80. "cursor": 20,
  81. "count": 20
  82. },
  83. "description": "使用上次返回的 cursor 值翻页,累计采集更多用户评论"
  84. }
  85. ],
  86. "workflow": {
  87. "description": "推荐调用链",
  88. "steps": [
  89. "上游: douyin-general-search(keyword, sort_type='1') → 找到高点赞爆款视频",
  90. "上游: douyin-video-detail(aweme_id) → 确认视频互动数据",
  91. "本步: douyin-video-comments(aweme_id) → 批量采集用户评论",
  92. "下游: douyin-comment-replies(item_id, comment_id) → 获取热评下的回复"
  93. ]
  94. },
  95. "reportMapping": {
  96. "slides": [
  97. "社媒聆听(Slide14)"
  98. ],
  99. "dataPoints": [
  100. "用户痛点关键词",
  101. "正向/负向情感分布",
  102. "高频需求词提取",
  103. "评论点赞数(热评识别)",
  104. "用户购买意向信号"
  105. ]
  106. },
  107. "timeout": 60000,
  108. "retry": {
  109. "maxAttempts": 3,
  110. "delay": 1500,
  111. "backoffMultiplier": 2
  112. }
  113. }