# Crate & Barrel — 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 furniture and home décor items on Crate & Barrel to instantly view product names, prices, images, and direct links to shop. Browse through results to compare options and find exactly what you're looking for in their catalog.

**Category:** E-commerce | **Website:** [www.crateandbarrel.com/](https://www.crateandbarrel.com/) | **Docs:** [parse.bot/marketplace/f7a06949-5514-4065-8ab1-62bd94b3ab03/crateandbarrel-com-api](https://parse.bot/marketplace/f7a06949-5514-4065-8ab1-62bd94b3ab03/crateandbarrel-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-crateandbarrel-com-api-f7a06949/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Full-text search across the Crate & Barrel product catalog. Results are auto-iterated; each product includes name, price range, image URL, product page URL, rating, and review count. Sorting options include relevance, price, rating, best selling, and new.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. |
| `per_page` | integer | No | Number of results per page (1-100). |
| `query` | string | Yes | Search query term (e.g. 'sofa', 'lamp', 'dining table'). |
| `sort_by` | string | No | Field to sort results by. |
| `sort_order` | string | No | Sort direction. |

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