# Baccarat — 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 and browse Baccarat's complete product catalog, view items by category, and access detailed product information including specifications and pricing. Find store locations and navigate through Baccarat's product categories to discover luxury crystal and home décor items.

**Category:** E-commerce | **Website:** [baccarat.com/](https://baccarat.com/) | **Docs:** [parse.bot/marketplace/6165d42a-90af-472a-9162-b1707170023c/baccarat-com-api](https://parse.bot/marketplace/6165d42a-90af-472a-9162-b1707170023c/baccarat-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-baccarat-com-api-6165d42a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### find_store

Returns the URL of the official Baccarat store locator for finding stores and boutiques worldwide.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-baccarat-com-api-6165d42a/find_store \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_category_products

List all products in a category by its ID. Supports pagination via start and limit parameters. Category IDs come from the navigation structure (get_navigation_categories).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | Yes | Category ID from the navigation structure (e.g. 'gifts', 'barware-dining', 'fragrance', 'home-decor'). |
| `limit` | integer | No | Number of results to return per page. |
| `start` | integer | No | Pagination offset (number of items to skip). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-baccarat-com-api-6165d42a/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","limit":"<integer>","start":"<integer>"}'
```

### get_navigation_categories

Retrieve the full site navigation structure including main categories, their IDs (cgid), and subcategories. Use category IDs with get_category_products to browse products by category.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-baccarat-com-api-6165d42a/get_navigation_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_detail

Fetch full product details for a single product by its URL. Returns name, price, physical attributes (height, width, weight, material, color, designer), color variations, images, and structured JSON-LD schema.org data. The URL can be obtained from search_products or get_category_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full product URL (e.g. 'https://www.baccarat.com/en_us/home-decor/fine-pieces/vases/eye-ii-vase-MDEYEVA5.html?variation=2817432'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-baccarat-com-api-6165d42a/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_products

Full-text search over Baccarat's product catalog. Returns a paginated list of matching products. Pagination advances via the start offset; each page returns up to limit items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results to return per page. |
| `query` | string | Yes | Search keyword (e.g. 'vase', 'crystal', 'rouge 540'). |
| `start` | integer | No | Pagination offset (number of items to skip). |

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