{
  "openapi": "3.0.0",
  "info": {
    "title": "Instagram Post Comment List API (V1)",
    "version": "1.0.0",
    "description": "Get post comments, commenter profiles, text, like counts, reply counts, and pagination cursors for sentiment review and engagement analysis."
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global (default)"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn (optional for Mainland China)"
    }
  ],
  "paths": {
    "/api/instagram/get-post-comments/v1": {
      "get": {
        "tags": [
          "Instagram"
        ],
        "summary": "Post Comment List",
        "description": "Get post comments, commenter profiles, text, like counts, reply counts, and pagination cursors for sentiment review and engagement analysis.",
        "operationId": "getInstagramPostCommentsV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for the API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "code",
            "in": "query",
            "description": "The unique shortcode for the Instagram post.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "minId",
            "in": "query",
            "description": "Pagination cursor returned as next_min_id from the previous response.",
            "required": false,
            "schema": {
              "type": "string",
              "default": ""
            }
          },
          {
            "name": "sortOrder",
            "in": "query",
            "description": "Sort order for the comments.\n\nAvailable Values:\n- `popular`: Popular\n- `newest`: Newest",
            "required": false,
            "schema": {
              "type": "string",
              "default": "newest",
              "description": "Instagram Comment Sort Order",
              "enum": [
                "popular",
                "newest"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "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": {}
}