# Zumiez — 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 Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.

**Category:** E-commerce | **Website:** [zumiez.com/](https://zumiez.com/) | **Docs:** [parse.bot/marketplace/cce9cd0c-4627-4f70-a974-c7a41ddef116/zumiez-com-api](https://parse.bot/marketplace/cce9cd0c-4627-4f70-a974-c7a41ddef116/zumiez-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-zumiez-com-api-cce9cd0c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full details for a single product group including pricing, meta description, images, stock status, and structured attributes (color, size, features). The product_group identifier is obtained from search_products or list_products_by_category results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_group` | string | Yes | Product group ID from search_products or list_products_by_category results (e.g. '408237'). |

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

### list_products_by_category

List products within a specific Zumiez category identified by its URI path. Returns paginated product summaries. Category paths follow the site's URL structure and end in .html (e.g. '/shoes.html', '/mens/hoodies.html').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_path` | string | Yes | Category URI path (e.g. '/shoes.html', '/mens/hoodies.html'). Must end in .html. |
| `limit` | integer | No | Number of products per page. |
| `page` | integer | No | Page number for pagination. |

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

### search_products

Full-text search across the Zumiez product catalog by keyword. Returns paginated product summaries. Pagination via page number; each page contains up to `limit` items. The total result count and page count are included in the response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of products per page. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword (e.g. 'hoodie', 'shoes', 'skateboard'). |

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