{
  "openapi": "3.0.1",
  "info": {
    "title": "Steam Reviews Scraper",
    "description": "Collect public Steam game reviews by App ID, Steam store URL, or game name. Filter by language, recommendation, purchase status, review order, dates, and off-topic activity. Export normalized review rows with links, engagement, game details, and reviewer context when available.",
    "version": "0.0",
    "x-build-id": "scAh8NLI73VrYT97F"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/maximedupre~steam-reviews/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-maximedupre-steam-reviews",
        "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/maximedupre~steam-reviews/runs": {
      "post": {
        "operationId": "runs-sync-maximedupre-steam-reviews",
        "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/maximedupre~steam-reviews/run-sync": {
      "post": {
        "operationId": "run-sync-maximedupre-steam-reviews",
        "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",
        "required": [
          "discoveryMethod"
        ],
        "properties": {
          "discoveryMethod": {
            "title": "Find games by",
            "enum": [
              "appIds",
              "storeUrls",
              "gameNames"
            ],
            "type": "string",
            "description": "Choose one way to find the Steam games whose reviews you want."
          },
          "appIds": {
            "title": "Steam App IDs",
            "minItems": 1,
            "type": "array",
            "description": "Enter one or more Steam App IDs. Use digits only, such as 730.",
            "items": {
              "type": "string",
              "pattern": "^[0-9]+$"
            }
          },
          "storeUrls": {
            "title": "Steam store URLs",
            "minItems": 1,
            "type": "array",
            "description": "Enter one or more Steam store page URLs. Each URL should point to a game's /app/ page.",
            "items": {
              "type": "object",
              "properties": {
                "url": {
                  "title": "Steam store URL",
                  "type": "string",
                  "description": "Enter the public Steam store URL for a game.",
                  "pattern": "^https?:\\/\\/store\\.steampowered\\.com\\/app\\/[0-9]+(?:[\\/?#].*)?$"
                }
              },
              "required": [
                "url"
              ]
            }
          },
          "gameNames": {
            "title": "Game names",
            "minItems": 1,
            "type": "array",
            "description": "Enter one or more game names. Steam uses its best match for each name.",
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "language": {
            "title": "Review language",
            "enum": [
              "all",
              "arabic",
              "bulgarian",
              "schinese",
              "tchinese",
              "czech",
              "danish",
              "dutch",
              "english",
              "finnish",
              "french",
              "german",
              "greek",
              "hungarian",
              "italian",
              "japanese",
              "koreana",
              "norwegian",
              "polish",
              "portuguese",
              "brazilian",
              "romanian",
              "russian",
              "spanish",
              "latam",
              "swedish",
              "thai",
              "turkish",
              "ukrainian",
              "vietnamese"
            ],
            "type": "string",
            "description": "Choose one Steam language, or All languages. Each result still shows its source language.",
            "default": "all"
          },
          "reviewType": {
            "title": "Recommendation",
            "enum": [
              "all",
              "positive",
              "negative"
            ],
            "type": "string",
            "description": "Choose all reviews, recommended reviews, or not-recommended reviews.",
            "default": "all"
          },
          "purchaseType": {
            "title": "Purchase status",
            "enum": [
              "all",
              "steam",
              "non_steam"
            ],
            "type": "string",
            "description": "Choose all reviews, Steam purchases, or non-Steam purchases.",
            "default": "all"
          },
          "reviewOrder": {
            "title": "Review order",
            "enum": [
              "recent",
              "updated",
              "helpful"
            ],
            "type": "string",
            "description": "Choose recent reviews, recently updated reviews, or the most helpful reviews.",
            "default": "recent"
          },
          "fromDate": {
            "title": "Reviews from",
            "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
            "type": "string",
            "description": "Optional start date for an inclusive source review date range. Use YYYY-MM-DD."
          },
          "toDate": {
            "title": "Reviews to",
            "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
            "type": "string",
            "description": "Optional end date for an inclusive source review date range. Use YYYY-MM-DD."
          },
          "includeOfftopicActivity": {
            "title": "Include off-topic activity",
            "type": "boolean",
            "description": "Include Steam activity marked as off-topic when this is on.",
            "default": false
          },
          "maxReviewsPerGame": {
            "title": "Max reviews per game",
            "minimum": 1,
            "type": "integer",
            "description": "Optional positive limit for reviews from each game. Leave this empty to get all publicly available reviews until the source is exhausted."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}