# Adidas (Chile) — 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 and search Adidas Chile's product catalog by filtering across gender, sport, and category options, then view detailed information for any item including pricing and specifications. Access complete product listings with full pagination support to explore the entire collection.

**Category:** E-commerce | **Website:** [www.adidas.cl/](https://www.adidas.cl/) | **Docs:** [parse.bot/marketplace/04b475aa-46e2-45ba-b633-4e6388aee769/adidas-cl-api](https://parse.bot/marketplace/04b475aa-46e2-45ba-b633-4e6388aee769/adidas-cl-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-adidas-cl-api-04b475aa/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Fetch full product details for one or more products by their IDs. Returns comprehensive data per product: all images, size variations with GTINs, color options, full description text, pricing breakdown (including VAT-exclusive), and rich attribute metadata (technologies, materials, fit, surface). Pass multiple comma-separated IDs for batch retrieval. IDs are available from get_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_ids` | string | Yes | Comma-separated product IDs (e.g., JH6206,JN3716). Get IDs from get_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-adidas-cl-api-04b475aa/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_ids":"<string>"}'
```

### get_products

Retrieve product listings filtered by taxonomy category. Categories combine gender (hombre/mujer/ninos), sport (running/futbol/basketball/tenis/training), product type (zapatillas/ropa), and color segments with hyphens. Returns a paginated window into the catalog; advance with the start offset. Each product summary includes pricing, rating, available sizes, and technology tags. Total catalog depth for a given category is in total_count.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Taxonomy category filter. Combine segments with hyphens for multiple filters. Accepted segments include gender (hombre, mujer, ninos), sport (running, futbol, basketball, tenis, training), product type (zapatillas, ropa, zapatos_de_futbol), and colors (negro, blanco, rojo). |
| `limit` | integer | No | Maximum number of products to return from the current page. |
| `start` | integer | No | Pagination offset (0-based). Each page returns up to 48 items by default. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-adidas-cl-api-04b475aa/get_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","start":"<integer>"}'
```
