# Gamestop — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search GameStop's catalog for games and merchandise, browse products by category, view detailed product information including reviews, and discover what's available—all with seamless access that handles Cloudflare protection automatically.

**Category:** E-commerce | **Website:** [gamestop.com/](https://gamestop.com/) | **Docs:** [parse.bot/marketplace/cef8e97a-75be-4923-9b10-91794dc9143f/gamestop-com-api](https://parse.bot/marketplace/cef8e97a-75be-4923-9b10-91794dc9143f/gamestop-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-gamestop-com-api-cef8e97a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve detailed information for a specific product by its ID. Combines data from GameStop's tile API and product page JSON-LD for comprehensive details including description, pricing, offers, images, specifications, and ratings. Some fields may be null if the product page doesn't expose them.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pid` | string | Yes | Product ID (e.g. '20013107', '11094701-11148586'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gamestop-com-api-cef8e97a/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pid":"<string>"}'
```

### get_product_reviews

Retrieve aggregate rating, review distribution, and Q&A summary for a specific product via the Bazaarvoice API. Returns review statistics without individual review text. Some products may have zero reviews.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pid` | string | Yes | Product ID (e.g. '322104', '20013107'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gamestop-com-api-cef8e97a/get_product_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pid":"<string>"}'
```

### get_trade_in_value

Retrieve the trade-in value(s) GameStop offers for a specific product. Returns Pro and/or Regular tier values with Store Credit and Cash amounts. Not all products have trade-in values; products without trade-in availability return a not-found error. Values are generated daily and expire at end of business day.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pid` | string | Yes | Product ID (e.g. '11094701', '20009361'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gamestop-com-api-cef8e97a/get_trade_in_value \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pid":"<string>"}'
```

### list_category_products

List products within a specific category path on GameStop. Returns product summaries for one page of results. Category paths mirror the site URL structure (e.g. 'video-games/playstation-5'). Manual pagination via start offset.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_path` | string | Yes | Category URL path segment (e.g. 'video-games/playstation-5', 'video-games/xbox-series-x-s'). |
| `limit` | integer | No | Number of results to return per page. |
| `start` | integer | No | Starting index for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gamestop-com-api-cef8e97a/list_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_path":"<string>","limit":"<integer>","start":"<integer>"}'
```

### search_products

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results to return per page. |
| `query` | string | Yes | Search keyword (e.g. 'elden ring', 'playstation 5'). |
| `start` | integer | No | Starting index for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gamestop-com-api-cef8e97a/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>","start":"<integer>"}'
```
