# Solebox — 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 Solebox's sneaker and apparel collection to find products by brand, name, price, and images, with options to filter by price range, brand, and sorting preferences. Check real-time availability and pricing across their full catalog to discover and compare items that match your style.

**Category:** E-commerce | **Website:** [www.solebox.com/de-de/c/bekleidung-2821?sort=key-relevance&prices=1~20](https://www.solebox.com/de-de/c/bekleidung-2821?sort=key-relevance&prices=1~20) | **Docs:** [parse.bot/marketplace/f61eb84e-1609-432d-b830-6230919fa651/solebox-com-api](https://parse.bot/marketplace/f61eb84e-1609-432d-b830-6230919fa651/solebox-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-solebox-com-api-f61eb84e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_products

Retrieve product listings from a Solebox category. Supports filtering by price range (EUR), brand ID, and sort order. Results are paginated; each page returns up to `per_page` items. The response includes pagination metadata (total_results, total_pages, current_page) alongside the product array. Each product carries brand, name, price, images, available sizes, and stock status. Category defaults to 2821 (Bekleidung/Apparel) when omitted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Brand filter. Accepts the format 'slug-id' (e.g., 'adidas_originals-830', 'nike_1-392') where the numeric ID after the last dash is used for filtering. Also accepts a bare numeric ID (e.g., '830'). |
| `category_id` | string | No | Category ID to browse (e.g., 2821=Bekleidung/Apparel, 2833=Schuhe/Shoes, 2834=Accessoires). |
| `max_price` | string | No | Maximum price filter in EUR (e.g., '200'). Omitting applies no maximum price constraint. |
| `min_price` | string | No | Minimum price filter in EUR (e.g., '1'). Omitting applies no minimum price constraint. |
| `page` | integer | No | Page number (1-based). |
| `per_page` | integer | No | Products per page (max 24). |
| `sorting` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-solebox-com-api-f61eb84e/get_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","category_id":"<string>","max_price":"<string>","min_price":"<string>","page":"<integer>","per_page":"<integer>","sorting":"<string>"}'
```
