# Containerstore — 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 Container Store's product catalog and get real-time autocomplete suggestions to find storage solutions and organizational products. Browse through available items with instant search results and product recommendations as you type.

**Category:** E-commerce | **Website:** [www.containerstore.com/welcome.htm](https://www.containerstore.com/welcome.htm) | **Docs:** [parse.bot/marketplace/5b7119df-8f18-46a1-9ac8-65dbb724e6e2/containerstore-com-api](https://parse.bot/marketplace/5b7119df-8f18-46a1-9ac8-65dbb724e6e2/containerstore-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-containerstore-com-api-5b7119df/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Full-text search over The Container Store product catalog. Returns paginated results with product details (name, brand, price, images, description) and facet counts for filtering. Pagination via page number; sorting by price or best-seller rank. Each page returns up to `rows` products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based). |
| `query` | string | Yes | Search keyword (e.g. 'bins', 'kitchen organizer', 'closet'). |
| `rows` | integer | No | Number of results per page. |
| `sort` | string | No | Sort order for results. |

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

### suggest

Autocomplete suggestions and product recommendations for a query prefix. Returns both query completions (for search-as-you-type UX) and a small set of product matches. Lightweight and fast — intended for typeahead, not full search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query prefix for autocomplete suggestions. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-containerstore-com-api-5b7119df/suggest \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
