# Spar (South Africa) — 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 the SPAR South Africa grocery catalog by product name to find items with their descriptions, sizes, and images. Note that prices aren't available since they vary by store location.

**Category:** Food & Dining | **Website:** [www.spar.co.za/](https://www.spar.co.za/) | **Docs:** [parse.bot/marketplace/d8412796-fc04-4130-a160-0d21386e0f6f/spar-co-za-api](https://parse.bot/marketplace/d8412796-fc04-4130-a160-0d21386e0f6f/spar-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-spar-co-za-api-d8412796/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve details of a single SPAR brand product by its numeric product_id (obtained from search_products results). Scans the full paginated catalog to locate the product, which may require up to ~20 sequential page fetches. Returns name, description, size, and image URL. Returns stale_input with kind input_not_found if the product_id does not exist in the catalog.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Numeric product ID from search_products results (e.g. '629', '8727'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-spar-co-za-api-d8412796/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### search_products

Search the SPAR brand product catalog by keyword. Returns matching products with their name, description, size, and image URL. The search matches against product names and descriptions. Prices are not available on this site as they vary by store location. Results are from the first page only (up to 16 products).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search term to find products by name or description (e.g. 'milk', 'bread', 'coconut'). |

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