{
  "openapi": "3.0.1",
  "info": {
    "title": "Steam Store Scraper",
    "description": "Scrape Steam games: metadata, multi-country prices, reviews and more.",
    "version": "0.0",
    "x-build-id": "i5Aq47ewxmMlREGlx"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/unfenced-group~steam-store-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-unfenced-group-steam-store-scraper",
        "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/unfenced-group~steam-store-scraper/runs": {
      "post": {
        "operationId": "runs-sync-unfenced-group-steam-store-scraper",
        "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/unfenced-group~steam-store-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-unfenced-group-steam-store-scraper",
        "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": {
          "searchTerms": {
            "title": "Search terms",
            "type": "array",
            "description": "Keywords to search the Steam store (e.g. \"elden ring\", \"roguelike\"). Each term is searched and the matching games are scraped.",
            "items": {
              "type": "string"
            }
          },
          "browseSection": {
            "title": "Browse section",
            "enum": [
              "none",
              "topSellers",
              "newReleases",
              "specials",
              "comingSoon"
            ],
            "type": "string",
            "description": "Instead of (or in addition to) keywords, pull games from a Steam storefront section.",
            "default": "none"
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Direct Steam app URLs (e.g. https://store.steampowered.com/app/1245620/). App IDs are extracted automatically.",
            "items": {
              "type": "string"
            }
          },
          "appIds": {
            "title": "App IDs",
            "type": "array",
            "description": "Steam numeric app IDs to scrape directly (e.g. 1245620).",
            "items": {
              "type": "string"
            }
          },
          "maxResults": {
            "title": "Max results",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Maximum number of games to scrape.",
            "default": 5
          },
          "country": {
            "title": "Country (single)",
            "enum": [
              "us",
              "gb",
              "de",
              "fr",
              "it",
              "es",
              "nl",
              "se",
              "dk",
              "fi",
              "cz",
              "ro",
              "bg",
              "pl",
              "no",
              "ch",
              "ua",
              "ru",
              "tr",
              "br",
              "mx",
              "ar",
              "cl",
              "co",
              "pe",
              "ca",
              "jp",
              "kr",
              "cn",
              "tw",
              "hk",
              "sg",
              "th",
              "vn",
              "id",
              "my",
              "ph",
              "in",
              "au",
              "nz",
              "za",
              "ae",
              "sa",
              "il"
            ],
            "type": "string",
            "description": "Storefront whose local currency prices are returned. Used when no multi-country selection is made.",
            "default": "us"
          },
          "countries": {
            "title": "Countries (multiple — prices in one run)",
            "type": "array",
            "description": "Select several storefronts to get each game's price in every chosen currency in a single run. The first selected country is the primary store.",
            "items": {
              "type": "string",
              "enum": [
                "us",
                "gb",
                "de",
                "fr",
                "it",
                "es",
                "nl",
                "se",
                "dk",
                "fi",
                "cz",
                "ro",
                "bg",
                "pl",
                "no",
                "ch",
                "ua",
                "ru",
                "tr",
                "br",
                "mx",
                "ar",
                "cl",
                "co",
                "pe",
                "ca",
                "jp",
                "kr",
                "cn",
                "tw",
                "hk",
                "sg",
                "th",
                "vn",
                "id",
                "my",
                "ph",
                "in",
                "au",
                "nz",
                "za",
                "ae",
                "sa",
                "il"
              ],
              "enumTitles": [
                "🇺🇸 United States (USD)",
                "🇬🇧 United Kingdom (GBP)",
                "🇩🇪 Germany (EUR)",
                "🇫🇷 France (EUR)",
                "🇮🇹 Italy (EUR)",
                "🇪🇸 Spain (EUR)",
                "🇳🇱 Netherlands (EUR)",
                "🇸🇪 Sweden (EUR)",
                "🇩🇰 Denmark (EUR)",
                "🇫🇮 Finland (EUR)",
                "🇨🇿 Czechia (EUR)",
                "🇷🇴 Romania (EUR)",
                "🇧🇬 Bulgaria (EUR)",
                "🇵🇱 Poland (PLN)",
                "🇳🇴 Norway (NOK)",
                "🇨🇭 Switzerland (CHF)",
                "🇺🇦 Ukraine (UAH)",
                "🇷🇺 Russia (RUB)",
                "🇹🇷 Turkey (USD)",
                "🇧🇷 Brazil (BRL)",
                "🇲🇽 Mexico (MXN)",
                "🇦🇷 Argentina (USD)",
                "🇨🇱 Chile (CLP)",
                "🇨🇴 Colombia (COP)",
                "🇵🇪 Peru (PEN)",
                "🇨🇦 Canada (CAD)",
                "🇯🇵 Japan (JPY)",
                "🇰🇷 South Korea (KRW)",
                "🇨🇳 China (CNY)",
                "🇹🇼 Taiwan (TWD)",
                "🇭🇰 Hong Kong (HKD)",
                "🇸🇬 Singapore (SGD)",
                "🇹🇭 Thailand (THB)",
                "🇻🇳 Vietnam (VND)",
                "🇮🇩 Indonesia (IDR)",
                "🇲🇾 Malaysia (MYR)",
                "🇵🇭 Philippines (PHP)",
                "🇮🇳 India (INR)",
                "🇦🇺 Australia (AUD)",
                "🇳🇿 New Zealand (NZD)",
                "🇿🇦 South Africa (ZAR)",
                "🇦🇪 UAE (AED)",
                "🇸🇦 Saudi Arabia (SAR)",
                "🇮🇱 Israel (ILS)"
              ]
            }
          },
          "allCountries": {
            "title": "All countries",
            "type": "boolean",
            "description": "Fetch every supported storefront's price for each game in one run (44 currencies). Overrides the country selections.",
            "default": false
          },
          "language": {
            "title": "Content language",
            "enum": [
              "en",
              "de",
              "fr",
              "es",
              "it",
              "nl",
              "pt",
              "pl",
              "ru",
              "ja",
              "ko",
              "zh",
              "tr",
              "sv"
            ],
            "type": "string",
            "description": "Language for game name, description and supported-languages text.",
            "default": "en"
          },
          "includeReviews": {
            "title": "Include review stats",
            "type": "boolean",
            "description": "Add aggregate review score, sentiment label, total/positive/negative counts and positive %.",
            "default": true
          },
          "includeDescription": {
            "title": "Include descriptions",
            "type": "boolean",
            "description": "Add short + full description as HTML, plain text and clean Markdown (LLM-ready).",
            "default": true
          },
          "includeMedia": {
            "title": "Include media",
            "type": "boolean",
            "description": "Add screenshots and trailer/video URLs.",
            "default": true
          },
          "includeSteamSpy": {
            "title": "Include SteamSpy data",
            "type": "boolean",
            "description": "Add owner estimate, concurrent players (CCU), average playtime and community tags from SteamSpy.",
            "default": false
          },
          "platforms": {
            "title": "Filter: platforms",
            "type": "array",
            "description": "Keep only games supporting any selected OS.",
            "items": {
              "type": "string",
              "enum": [
                "windows",
                "mac",
                "linux"
              ],
              "enumTitles": [
                "Windows",
                "macOS",
                "Linux"
              ]
            }
          },
          "priceFilter": {
            "title": "Filter: price status",
            "enum": [
              "all",
              "free",
              "paid",
              "onSale"
            ],
            "type": "string",
            "description": "Keep only games matching this price status.",
            "default": "all"
          },
          "minPrice": {
            "title": "Filter: min price",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum price (in the primary currency's major units) based on the lowest selected-country price."
          },
          "maxPrice": {
            "title": "Filter: max price",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum price (in the primary currency's major units) based on the lowest selected-country price."
          },
          "minMetacritic": {
            "title": "Filter: min Metacritic",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Keep only games with a Metacritic score at or above this value. Games without a score are kept."
          },
          "minReviewScore": {
            "title": "Filter: min review score (0-9)",
            "minimum": 0,
            "maximum": 9,
            "type": "integer",
            "description": "Steam review score band (0=none … 9=Overwhelmingly Positive). Requires reviews enabled."
          },
          "minPositivePercent": {
            "title": "Filter: min positive %",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Keep only games whose positive review share is at or above this percentage. Requires reviews enabled."
          },
          "genres": {
            "title": "Filter: genres",
            "type": "array",
            "description": "Keep only games matching any of these genres (substring match, case-insensitive).",
            "items": {
              "type": "string",
              "enum": [
                "Action",
                "Adventure",
                "Casual",
                "Indie",
                "Massively Multiplayer",
                "Racing",
                "RPG",
                "Simulation",
                "Sports",
                "Strategy",
                "Early Access",
                "Free To Play"
              ],
              "enumTitles": [
                "Action",
                "Adventure",
                "Casual",
                "Indie",
                "Massively Multiplayer",
                "Racing",
                "RPG",
                "Simulation",
                "Sports",
                "Strategy",
                "Early Access",
                "Free To Play"
              ]
            }
          },
          "releasedAfter": {
            "title": "Filter: released after",
            "type": "string",
            "description": "Keep only games released on/after this date (YYYY-MM-DD). Undated games are kept."
          },
          "releasedBefore": {
            "title": "Filter: released before",
            "type": "string",
            "description": "Keep only games released on/before this date (YYYY-MM-DD). Undated games are kept."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}