{
  "openapi": "3.0.0",
  "info": {
    "title": "Instagram帖子评论列表 API (V1)",
    "version": "1.0.0",
    "description": "获取帖子评论、评论者资料、评论内容、点赞数、回复数及分页游标，用于情感分析和互动分析。"
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global（默认）"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn（中国大陆地区可选）"
    }
  ],
  "paths": {
    "/api/instagram/get-post-comments/v1": {
      "get": {
        "tags": [
          "Instagram"
        ],
        "summary": "帖子评论列表",
        "description": "获取帖子评论、评论者资料、评论内容、点赞数、回复数及分页游标，用于情感分析和互动分析。",
        "operationId": "getInstagramPostCommentsV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "API服务的访问令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "code",
            "in": "query",
            "description": "Instagram 帖子的唯一短代码。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "minId",
            "in": "query",
            "description": "上一次响应中返回的 next_min_id 分页游标。",
            "required": false,
            "schema": {
              "type": "string",
              "default": ""
            }
          },
          {
            "name": "sortOrder",
            "in": "query",
            "description": "评论的排序方式。\n\n可选值：\n- `popular`: 热门\n- `newest`: 最新",
            "required": false,
            "schema": {
              "type": "string",
              "default": "newest",
              "description": "Instagram Comment Sort Order",
              "enum": [
                "popular",
                "newest"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "202",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "500",
                        "600",
                        "601"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "24001500",
        "x-api-version": "v1",
        "x-highlights": []
      }
    }
  },
  "components": {}
}