# Game — 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 for products on Game.co.za by name and instantly access detailed information including pricing, product names, and images. Perfect for comparing gaming and tech products available at South Africa's leading retailer without visiting the site directly.

**Category:** E-commerce | **Website:** [www.game.co.za/](https://www.game.co.za/) | **Docs:** [parse.bot/marketplace/1dbae9a0-764d-4945-9007-c925a6b48503/game-co-za-api](https://parse.bot/marketplace/1dbae9a0-764d-4945-9007-c925a6b48503/game-co-za-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-game-co-za-api-1dbae9a0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Search for products by name on Game.co.za. Returns paginated results with product name, price, image URL, brand, stock status, and ratings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `page_size` | integer | No | Number of results per page, between 1 and 100. |
| `query` | string | Yes | Search query text for finding products (e.g. 'samsung', 'laptop', 'washing machine'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-game-co-za-api-1dbae9a0/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","query":"<string>"}'
```
