# Ciele Athletics — 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.

> Check real-time stock levels and availability for Ciele Athletics products across all variants, and view pricing and product details to find exactly what you need. Monitor inventory status to know when items are in stock before making your purchase.

**Category:** E-commerce | **Website:** [cieleathletics.com/products/fstcap-elite-shadowsphinx](https://cieleathletics.com/products/fstcap-elite-shadowsphinx) | **Docs:** [parse.bot/marketplace/a5075d21-9bbd-43bf-802a-9e1d96ed4477/cieleathletics-com-api](https://parse.bot/marketplace/a5075d21-9bbd-43bf-802a-9e1d96ed4477/cieleathletics-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-cieleathletics-com-api-a5075d21/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_inventory_quantity

Retrieve per-variant inventory quantities for a single product identified by its URL handle. Returns variant id, title, SKU, price, availability, and current stock count. Inventory data is sourced from the product page's embedded inventory JSON.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | Product URL handle (e.g. 'w-crgtightshort35-shadowsphinx'). Obtainable from list_products results. |

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

### get_product_inventory

Retrieve detailed inventory information for a single product identified by its URL handle. Returns variant-level details including SKU, barcode, weight, fulfillment service, inventory management status, and product options.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | Product URL handle (e.g. 'fstcap-elite-shadowsphinx'). Obtainable from list_products results. |

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

### list_products

Retrieve products with per-variant availability status. Results are auto-iterated across pages. Optionally scope to a collection handle to narrow the catalog.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `collection` | string | No | Collection handle to filter products (e.g. 'elite', 'fstcap'). Omit to list all products. |
| `limit` | integer | No | Number of products per page (1–250). |
| `page` | integer | No | Page number for pagination (1-based). |

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