gamestop.com APIgamestop.com ↗
Search GameStop's catalog, browse by category, get product details with pricing and offers, and retrieve aggregate review data via a structured JSON API.
curl -X GET 'https://api.parse.bot/scraper/338d661d-0dbd-4d14-8a5d-82da4521e819/search_products?limit=5&query=elden+ring&start=0' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products by keyword on GameStop. Returns paginated results with product summary information including name, brand, category, platform, and availability.
| Param | Type | Description |
|---|---|---|
| limit | integer | Number of results to return per page. |
| queryrequired | string | Search keyword (e.g. 'elden ring', 'playstation 5'). |
| start | integer | Starting index for pagination. |
{
"type": "object",
"fields": {
"products": "array of product summary objects with pid, sku, name, brand, category, platform, price, availability, condition, url",
"total_count": "integer, number of products returned"
},
"sample": {
"data": {
"products": [
{
"pid": "20013107",
"sku": "409454",
"url": null,
"name": "Elden Ring Shadow of the Erdtree DLC - Xbox Series X/S",
"brand": "Bandai Namco",
"price": null,
"category": "Video Games/Xbox Series X|S",
"platform": "Xbox Series X",
"condition": "Digital",
"availability": "Available"
}
],
"total_count": 5
},
"status": "success"
}
}About the gamestop.com API
The GameStop API covers 4 endpoints that expose product search, category browsing, detailed product information, and review aggregates from GameStop.com. The search_products endpoint returns paginated results with fields including pid, sku, name, brand, platform, price, condition, and availability — giving you structured catalog access across GameStop's full inventory of games, hardware, and merchandise.
Search and Browse
The search_products endpoint accepts a query string (e.g. 'elden ring', 'playstation 5') and returns an array of product summary objects with fields including pid, sku, name, brand, category, platform, price, availability, condition, and url. Pagination is controlled via start (offset index) and limit (results per page), along with a total_count integer for computing page ranges. The list_category_products endpoint works identically but accepts a category_path parameter (e.g. 'video-games/playstation-5', 'video-games/xbox-series-x-s') instead of a keyword query, letting you enumerate products within a known taxonomy node.
Product Details
Pass a pid to get_product_details to retrieve a richer record for a single product. The response extends the summary shape with a description, a primary image URL, an images array for additional photos, and an offers array. Each offer object carries condition, sku, price, currency, and availability, making it straightforward to compare new versus pre-owned pricing for the same product. The brand and platform fields are also present at the top level.
Review Aggregates
get_product_reviews returns aggregate rating data for a given pid. The response includes average_rating, num_reviews, rating_range (maximum stars, typically 5), a rating_distribution array of {stars, count} objects, and Q&A statistics via num_questions and num_answers. It also returns a recommended object with separate yes and no counts. Note that individual review text is not included — only summary statistics are returned.
- Track new and pre-owned price differences for specific game titles using the
offersarray fromget_product_details. - Build a price monitoring tool that watches a category path (e.g.
video-games/playstation-5) for availability changes. - Aggregate average ratings and review counts across a set of pids to rank titles by community reception.
- Sync a product catalog for a comparison site using
search_productswith keyword queries per platform or genre. - Identify Q&A engagement levels by comparing
num_questionsandnum_answersacross products in a category. - Detect which products are currently in stock by filtering on the
availabilityfield returned bylist_category_products. - Collect structured metadata (brand, platform, category, image URLs) for a gaming database or recommendation engine.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does GameStop have an official public developer API?+
What does `get_product_reviews` return, and does it include individual review text?+
average_rating, num_reviews, rating_distribution (a per-star breakdown), recommended counts, and Q&A totals (num_questions, num_answers). Individual review text, reviewer names, and review dates are not returned. You can fork the API on Parse and revise it to add an endpoint that returns individual review content.Can I retrieve historical pricing or price change data?+
price field in product summaries and the offers array in get_product_details reflect current listed prices only. You can fork the API on Parse and revise it to store and compare prices over time using an external database.How does pagination work across the search and category endpoints?+
search_products and list_category_products accept start (zero-based offset) and limit (results per call). The total_count field in each response tells you the total number of matching products, so you can calculate how many additional pages to request.