GameStop 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.
What is the GameStop 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.
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'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace gamestop-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
from parse_apis.gamestop_api import GameStop, ProductSummary, Product, ReviewSummary
gamestop = GameStop()
# Search for products
for item in gamestop.productsummaries.search(query="elden ring"):
print(item.pid, item.name, item.platform, item.availability)
# Get detailed product info
product = gamestop.products.get(pid="20013107")
print(product.name, product.price, product.pro_price, product.availability)
print(product.image)
# Get reviews for a product
reviews = product.reviews()
print(reviews.num_reviews, reviews.average_rating, reviews.rating_range)
for bucket in reviews.rating_distribution:
print(bucket.stars, bucket.count)
# Navigate from summary to detail
for item in gamestop.productsummaries.list_by_category(category_path="video-games/playstation-5"):
detail = item.details()
print(detail.name, detail.price, detail.brand)
Full-text search across GameStop's product catalog. Returns product summaries matching the query keyword. Each call returns a single page of up to `limit` items starting from `start`. Products include identification, pricing, platform, and availability metadata.
| 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 in this page"
},
"sample": {
"data": {
"products": [
{
"pid": "11094701-11180297",
"sku": "11094701-11180297",
"url": null,
"name": "Elden Ring - Xbox Series X",
"brand": "Bandai Namco",
"price": null,
"category": "Video Games/Xbox Series X|S",
"platform": "Xbox Series X",
"condition": "",
"availability": "Available"
}
],
"total_count": 5
},
"status": "success"
}
}About the GameStop API
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.
The GameStop API is a managed, monitored endpoint for gamestop.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when gamestop.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official gamestop.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- 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 | 100 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.