Xbox Scraper avatar

Xbox Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Xbox Scraper

Xbox Scraper

[๐Ÿ’ฐ $1.0 / 1K] Extract Xbox game catalog data โ€” titles, prices, discounts, content ratings, genres, platforms, release dates, developers, publishers. Search by keyword, region, or Xbox URLs. Clean JSON/CSV/Excel for market research and price monitoring.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

SolidCode

SolidCode

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Pull the Xbox games catalog at scale โ€” titles, structured pricing, ESRB/PEGI content ratings, genres, platforms, release dates, developers, publishers, and box-art image URLs for every game in the store. Localize to any of 24 regional storefronts to read region-accurate prices and currencies. Built for game market analysts, price-tracking teams, and games-industry researchers who need clean, structured Xbox catalog data without clicking through thousands of store tiles by hand.

Why This Scraper?

  • 24 regional storefronts with region-accurate pricing โ€” read prices, currency, and text from any of 24 Xbox markets (US, UK, Germany, France, Japan, Korea, Brazil, Mexico, and 16 more), each returning its native currency (USD, GBP, EUR, JPY, KRW, BRL, and more).
  • Structured pricing, not a price string โ€” every game carries a numeric price, originalPrice (MSRP), discountPercent, ISO currency code, and a ready-to-display priceText ("Free" for free-to-play), so sale math is done for you.
  • ESRB / PEGI content ratings โ€” the age-rating label ships on every game, whichever board applies to the region you scrape.
  • Developer AND publisher names โ€” both developer and publisher are captured separately, not merged into one credit line.
  • Box-art and gallery image URLs โ€” a primary imageUrl plus an images gallery of box art, hero art, and video poster frames, ready to embed.
  • Five sort orders โ€” order the games your run collects by Best Match, Title Aโ€“Z, Release Date (Newest), Price: Low to High, or Price: High to Low, so the cheapest titles or newest releases in your pull land at the top.
  • Availability across every Xbox platform โ€” the platforms list shows whether each game runs on Xbox Series X|S, Xbox One, PC, and Cloud.
  • Whole-catalog coverage โ€” browse the full ~17,000-game Xbox catalog for a region in one run, or narrow to a keyword, franchise, or pasted store URL.
  • Clean, deduplicated rows โ€” one flat row per game, deduplicated by product ID, with camelCase fields and ISO release dates โ€” no duplicate titles across pages.

Use Cases

Game Market Research

  • Map the full catalog of a regional store by genre, platform, or release date
  • Track how many new titles launch on Xbox Series X|S versus Xbox One each month
  • Compare catalog size and genre mix across US, EU, and Asian storefronts
  • Identify which publishers are most active in a given market

Price Monitoring & Deal Tracking

  • Track list price, MSRP, and discount percentage on target titles over time
  • Build a live feed of on-sale games sorted Price: Low to High
  • Compare the same title's price across 24 regions to spot regional bargains
  • Flag free-to-play and newly discounted titles as they appear

Competitive Catalog Analysis

  • Benchmark a studio's catalog footprint against competing publishers
  • Analyze genre saturation and pricing bands across the store
  • Monitor a rival's new releases by sorting on Release Date (Newest)
  • Compare content-rating distribution (ESRB/PEGI) across genres

Lead Generation for Studios & Publishers

  • Build contact-ready lists of developer and publisher names by genre
  • Identify indie publishers active in specific regional markets
  • Surface up-and-coming studios shipping into new territories

Content & Catalog Enrichment

  • Enrich a games database with box art, descriptions, and release dates
  • Power a price-comparison or deals site with structured Xbox pricing
  • Feed catalog data into dashboards, newsletters, and market reports

Getting Started

Search by Keyword

The simplest way to start โ€” search a franchise or title:

{
"searchTerms": ["Halo"],
"maxResults": 50
}

Browse a Region with Sort and Limit

Collect from the UK store and order the results cheapest first:

{
"market": "en-GB",
"sortBy": "priceLow",
"maxResults": 500
}

Paste Xbox Store URLs

Point the scraper at exact browse, category, or game pages:

{
"startUrls": [
"https://www.xbox.com/de-DE/games/browse",
"https://www.xbox.com/en-US/games/store/forza-horizon-5/9NKX70BBCDRN"
],
"maxResults": 200
}

Input Reference

What to Scrape

ParameterTypeDefaultDescription
searchTermsstring[]["Halo"]Games or franchises to search the Xbox store for, e.g. "Halo", "Forza", "Minecraft". Each term is searched separately. Keyword search returns at most ~50 results per term. Leave empty to browse the full catalog.
startUrlsstring[][]Paste Xbox store URLs directly โ€” a browse/category page or an individual game page. Any filters already in the URL are respected.

Search Filters

ParameterTypeDefaultDescription
marketselectUnited States (English)Which regional Xbox store to read prices and text from. Determines currency and language. 24 regions available, from United States (English) to Japan (Japanese), Germany (German), Brazil (Portuguese), and more.
sortByselectBest MatchHow to order the games your run collects: Best Match, Title (Aโ€“Z), Release Date (Newest), Price: Low to High, or Price: High to Low. The order is applied to the games gathered in the run (bounded by maxResults) โ€” raise maxResults to rank a larger slice of the catalog.

Options

ParameterTypeDefaultDescription
maxResultsinteger100Maximum number of games to collect across all search terms and URLs combined. Set to 0 to collect the whole catalog for a region (up to an internal safety limit of 20,000). Start with 20โ€“50 to test, then increase.

Output

Each game is one flat row. Here's a representative result:

{
"productId": "9NKX70BBCDRN",
"title": "Forza Horizon 5",
"url": "https://www.xbox.com/en-US/games/store/forza-horizon-5/9nkx70bbcdrn",
"description": "Your Ultimate Horizon Adventure awaits! Explore the vibrant open world landscapes of Mexico.",
"price": 59.99,
"originalPrice": 59.99,
"discountPercent": 0,
"currency": "USD",
"priceText": "59.99 USD",
"contentRating": "ESRB Everyone 10+",
"genres": ["Racing & flying", "Sports"],
"categories": ["Racing & flying", "Sports"],
"platforms": ["Xbox Series X|S", "Xbox One", "PC", "Cloud"],
"availableOn": ["Xbox Series X|S", "Xbox One", "PC", "Cloud"],
"releaseDate": "2021-11-09",
"developer": "Playground Games",
"publisher": "Xbox Game Studios",
"averageRating": 4.7,
"ratingCount": 128400,
"imageUrl": "https://store-images.s-microsoft.com/image/apps.example.boxart.png",
"images": [
"https://store-images.s-microsoft.com/image/apps.example.boxart.png",
"https://store-images.s-microsoft.com/image/apps.example.hero.png"
],
"market": "en-US"
}

Core Fields

FieldTypeDescription
productIdstringUnique Xbox store product identifier
titlestringGame title
urlstringDirect Xbox store link for the game
descriptionstringGame description or short description
releaseDatestringRelease date, ISO YYYY-MM-DD
marketstringStore region the row was collected from (e.g. en-US)

Pricing

FieldTypeDescription
pricenumberCurrent list price in the region's currency
originalPricenumberOriginal price (MSRP) before any discount
discountPercentnumberDiscount percentage off the original price
currencystringISO currency code (USD, GBP, EUR, JPY, โ€ฆ)
priceTextstringReady-to-display price label ("Free" for free-to-play titles)

Classification

FieldTypeDescription
contentRatingstringAge-rating label (ESRB / PEGI depending on region)
genresstring[]Genre / category labels for the game
categoriesstring[]Same as genres โ€” provided under both keys for convenience
platformsstring[]Platforms the game runs on (Xbox Series X|S, Xbox One, PC, Cloud)
availableOnstring[]Same as platforms โ€” provided under both keys for convenience
developerstringDeveloper studio name
publisherstringPublisher name
averageRatingnumberAverage user rating (when published by the store)
ratingCountnumberNumber of user ratings behind the average

Media

FieldTypeDescription
imageUrlstringPrimary box-art image URL
imagesstring[]Gallery of box art, hero art, and video poster frames

Tips for Best Results

  • Start small โ€” set maxResults to 20โ€“50 on your first run to confirm the data matches your needs, then scale up.
  • Keyword search caps at ~50 games per term โ€” the store's search view isn't paginated. For a full-catalog pull, browse a region (leave searchTerms empty) or paste a browse URL instead.
  • Set maxResults to 0 for the whole catalog โ€” a region's full games catalog is around 17,000 titles; unlimited runs collect all of them (up to a 20,000 safety limit), which takes longer and costs more.
  • Combine region + Price: Low to High to surface deals โ€” this is the fastest way to find regional free-to-play titles and the deepest discounts in a market.
  • Sorting orders the games collected in your run โ€” raise maxResults to rank a larger slice of the catalog by price or release date; a small run orders only the games it gathers.
  • Switch market to compare prices across regions โ€” run the same title or franchise in en-US, en-GB, and ja-JP to spot regional price gaps in native currency.
  • Sort on Release Date (Newest) to track launches โ€” ideal for monitoring a competitor's or publisher's newest titles as they ship.
  • Mix inputs freely โ€” search terms, pasted URLs, and a browse region can all run together in a single job; results are deduplicated by product ID.

Pricing

From $1.00 per 1,000 results โ€” one of the most affordable ways to pull structured Xbox catalog data at scale. Bronze, Silver, and Gold subscribers pay progressively less; the table below shows total cost at each discount tier.

ResultsNo discountBronzeSilverGold
100$0.12$0.115$0.105$0.10
1,000$1.20$1.15$1.05$1.00
10,000$12.00$11.50$10.50$10.00
100,000$120.00$115.00$105.00$100.00

A "result" is any game row in the output dataset. No compute or time-based charges โ€” you pay per result, plus a small fixed per-run start fee.

Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

  • Zapier / Make / n8n โ€” Workflow automation
  • Google Sheets โ€” Direct spreadsheet export
  • Slack / Email โ€” Notifications on new results
  • Webhooks โ€” Trigger custom APIs on run completion
  • Apify API โ€” Full programmatic access

This actor is designed for legitimate market research, price monitoring, and catalog analysis. Users are responsible for complying with applicable laws and the Xbox store's Terms of Service. Collect only publicly available catalog information, and do not use extracted data for spam, misrepresentation, or any illegal purpose.