# Cybex Online — 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 CYBEX's strollers, car seats, and accessories with detailed product information including pricing, variants, and images. Find exactly what you need by searching specific products or exploring category listings from their online shop.

**Category:** E-commerce | **Website:** [www.cybex-online.com/en/de](https://www.cybex-online.com/en/de) | **Docs:** [parse.bot/marketplace/b77155d3-cc48-49a1-ae35-877e6f6fe701/cybex-online-com-api](https://parse.bot/marketplace/b77155d3-cc48-49a1-ae35-877e6f6fe701/cybex-online-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-cybex-online-com-api-b77155d3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve full product details for a single CYBEX product by its master product ID. Returns pricing, availability, high-resolution images, color/size variant options, short description, and customer ratings. The response represents the default variant; use variant IDs from the variations array to fetch alternative colorways.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Product ID (e.g. 'cs-pl-sirona-ti', 'st-pl-coya'). Obtainable from search_products or list_category_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cybex-online-com-api-b77155d3/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### list_category_products

List all products in a CYBEX store category. Returns product IDs, names, brands, subcategory paths, and net prices for every item on the category page. Useful for browsing the full catalog within a product line. Each product's id can be passed to get_product for full details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category URL slug. Known values: car-seats, strollers, accessories, carriers, home-and-living, sport, design-collaborations, limited-offers. |

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

### search_products

Full-text search across the CYBEX product catalog via the autocomplete/suggestions API. Returns matching products with prices, images, and availability status, plus matching categories and search phrase suggestions. Results are capped at the server's suggestion limit (typically 6-10 products). Each returned product carries an id usable with get_product for full details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query text (e.g. 'stroller', 'car seat', 'sirona') |

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