{
  "openapi": "3.0.1",
  "info": {
    "title": "App Store & Google Play Reviews Scraper + Sentiment Analysis",
    "description": "Scrape iOS App Store and Google Play reviews, then get what the reviews actually mean: sentiment per review, complaints ranked by how much they hurt, which release broke things, and a topic-by-topic comparison against competitor apps. Works in 6 languages. No login, no API key.",
    "version": "1.1",
    "x-build-id": "AtOQ1aHZT7V6JOHEC"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/integrative_tangent~app-reviews-intelligence/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-integrative_tangent-app-reviews-intelligence",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/integrative_tangent~app-reviews-intelligence/runs": {
      "post": {
        "operationId": "runs-sync-integrative_tangent-app-reviews-intelligence",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/integrative_tangent~app-reviews-intelligence/run-sync": {
      "post": {
        "operationId": "run-sync-integrative_tangent-app-reviews-intelligence",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "appleAppIds": {
            "title": "App Store apps",
            "type": "array",
            "description": "Numeric App Store IDs or full store URLs. Both work: `310633997` or `https://apps.apple.com/us/app/whatsapp-messenger/id310633997`",
            "items": {
              "type": "string"
            }
          },
          "googleAppIds": {
            "title": "Google Play apps",
            "type": "array",
            "description": "Package names or full store URLs. Both work: `com.whatsapp` or `https://play.google.com/store/apps/details?id=com.whatsapp`",
            "items": {
              "type": "string"
            }
          },
          "searchTerm": {
            "title": "Or search by name",
            "type": "string",
            "description": "Find apps by name instead of pasting IDs. Useful when you want to compare against competitors you can't name exactly."
          },
          "searchPlatform": {
            "title": "Search which store",
            "enum": [
              "both",
              "ios",
              "android"
            ],
            "type": "string",
            "description": "Which store to search in. Use \"both\" to compare the same product across iOS and Android.",
            "default": "both"
          },
          "maxAppsFromSearch": {
            "title": "Apps to take from search",
            "minimum": 1,
            "maximum": 12,
            "type": "integer",
            "description": "Top N results per store. Keep it small — every extra app costs reviews.",
            "default": 3
          },
          "countries": {
            "title": "Storefronts",
            "type": "array",
            "description": "Two-letter country codes, lowercase: `us`, `gb`, `de`, `es`, `br`, `fr`, `it`, `mx`. More storefronts = a bigger and more international sample. Apple caps each storefront at ~500 reviews, so adding countries is the way past that ceiling.",
            "default": [
              "us"
            ],
            "items": {
              "type": "string"
            }
          },
          "maxReviewsPerApp": {
            "title": "Max reviews per app",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Total across all storefronts. 200 is enough to see the main themes; 500+ gives reliable per-version breakdowns.",
            "default": 200
          },
          "minRating": {
            "title": "Minimum stars",
            "minimum": 1,
            "maximum": 5,
            "type": "integer",
            "description": "Set to 1 and max to 2 to analyze only angry reviews — the fastest way to find what to fix.",
            "default": 1
          },
          "maxRating": {
            "title": "Maximum stars",
            "minimum": 1,
            "maximum": 5,
            "type": "integer",
            "description": "Upper bound of the star filter. Leave at 5 unless you are isolating a rating band.",
            "default": 5
          },
          "analyze": {
            "title": "Run sentiment & topic analysis",
            "type": "boolean",
            "description": "Turn off to get raw reviews only, at the lowest possible cost.",
            "default": true
          },
          "compareApps": {
            "title": "Compare apps head to head",
            "type": "boolean",
            "description": "When you pass 2+ apps, adds a comparison row scoring every topic across all of them. The first app you list is treated as yours.",
            "default": true
          },
          "outputReviews": {
            "title": "Include individual review rows",
            "type": "boolean",
            "description": "Turn off if you only want the summary and comparison rows.",
            "default": true
          },
          "includeReviewText": {
            "title": "Include review text",
            "type": "boolean",
            "description": "Turn off to keep ratings, sentiment and topics but drop the raw text.",
            "default": true
          },
          "language": {
            "title": "Google Play language",
            "type": "string",
            "description": "Two-letter language code used for Google Play requests. Sentiment is auto-detected per review regardless of this setting.",
            "default": "en"
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}