# Gapcanada — 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.

> Browse Gap Canada's complete product catalog across all departments and retrieve detailed product information including sizing charts and current pricing. Get category listings, search specific products, and access comprehensive product details to compare styles and availability.

**Category:** E-commerce | **Website:** [www.gapcanada.ca/](https://www.gapcanada.ca/) | **Docs:** [parse.bot/marketplace/6bf24789-1f5e-42ca-910b-d53a9c6bceb3/gapcanada-ca-api](https://parse.bot/marketplace/6bf24789-1f5e-42ca-910b-d53a9c6bceb3/gapcanada-ca-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-gapcanada-ca-api-6bf24789/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_detail

Returns detailed product information including all available sizes, SKU-level pricing, and inventory status. Use a cc_id from get_products as the pid parameter. Returns the full size matrix, per-SKU inventory, and all color variant IDs for the same style.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pid` | string | Yes | Product/customer choice ID (cc_id from get_products results). |

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

### get_products

Returns paginated product listings for a category. Each product includes pricing (effective and regular), inventory status, color information, review scores, badges, and image URLs. Use cid and department values obtained from list_categories. Page is 0-indexed and page_size caps at 200.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cid` | string | Yes | Category ID obtained from list_categories endpoint. |
| `department` | string | Yes | Department code obtained from list_categories endpoint. |
| `page` | integer | No | Page number, 0-indexed. |
| `page_size` | integer | No | Number of products per page (max 200). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gapcanada-ca-api-6bf24789/get_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cid":"<string>","department":"<string>","page":"<integer>","page_size":"<integer>"}'
```

### list_categories

Returns all available product categories across Women, Men, Girls, Boys, and Baby & Toddler divisions. Each category includes a cid and department code required by get_products. The list is static and returns the full catalog in one response with no pagination.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gapcanada-ca-api-6bf24789/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
