# Lacroixwater — 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 all LaCroix sparkling water flavors and get detailed information like pricing, stock availability, and product images for any flavor. Find exactly what you need to compare options and check what's in stock before you shop.

**Category:** E-commerce | **Website:** [www.lacroixwater.com/](https://www.lacroixwater.com/) | **Docs:** [parse.bot/marketplace/ea10a2d4-cbb7-4e12-b81d-fd09b366442e/lacroixwater-com-api](https://parse.bot/marketplace/ea10a2d4-cbb7-4e12-b81d-fd09b366442e/lacroixwater-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-lacroixwater-com-api-ea10a2d4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_flavor_detail

Returns detailed information about a specific LaCroix flavor by its URL slug. Includes full color information (hex and RGB), pricing, timestamps, and Magento product title. Returns input_not_found when the slug does not match any flavor.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the flavor (e.g. 'pineapple-coconut', 'lime', 'pamplemousse', 'black-razzberry'). Available slugs can be retrieved from the get_flavors endpoint. |

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

### get_flavors

Returns all available LaCroix sparkling water flavors ordered by display rank. Each flavor includes title, slug, description, SKU, pricing, stock status, color, and product image URL. Single-page response with no pagination parameters.

**Estimated cost:** Metered

_No parameters required._

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

### get_shop_products

Returns all LaCroix shop merchandise products (clothing, accessories, collectibles) ordered by display rank. Can be filtered by category. Each product includes title, slug, category, SKU, pricing, stock status, image URL, and variants where applicable. Single-page response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by product category. Accepted values: 'clothing', 'accessories', 'collectibles'. Omitting returns all categories combined. |

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