# Joueclub — 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 LEGO sets and toys from JouéClub's French catalog, discovering product details, pricing, and current promotions all in one place. Filter by category and brand to find the perfect LEGO set or toy for your needs.

**Category:** E-commerce | **Website:** [joueclub.fr/](https://joueclub.fr/) | **Docs:** [parse.bot/marketplace/8f97b0a6-23a4-4727-9be4-3933a5bc4330/joueclub-fr-api](https://parse.bot/marketplace/8f97b0a6-23a4-4727-9be4-3933a5bc4330/joueclub-fr-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-joueclub-fr-api-8f97b0a6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_brands_list

Retrieves the full alphabetically sorted list of toy brands and heroes available on JouéClub. Returns brand names with their dedicated page URLs. No pagination; all brands returned in a single response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-joueclub-fr-api-8f97b0a6/get_brands_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_lego_category_page

Retrieves LEGO themes and age group categories from the JouéClub LEGO boutique page. Themes include named LEGO product lines (Star Wars, Technic, etc.) and featured sets. Age groups span from birth through 15+ years. Returns all items in a single page; no pagination.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-joueclub-fr-api-8f97b0a6/get_lego_category_page \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Fetches full details for a product from its JouéClub product page URL. Extracts structured data including name, price in EUR, LEGO set ID, EAN barcode, description text, stock availability, and image URLs. Works for any JouéClub product page that has LD+JSON structured data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full JouéClub product page URL (e.g. https://www.joueclub.fr/jeux-de-constructions-maquettes/lego-star-wars-75410-le-chasseur-n-1-de-mando-et-grogu-5702017817606.html) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-joueclub-fr-api-8f97b0a6/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_promotions

Retrieves current promotions and special offers from JouéClub. Returns product titles and their page URLs for items currently featured in promotional campaigns. The list content changes as promotions rotate.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-joueclub-fr-api-8f97b0a6/get_promotions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
