# Mytheresa — 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 Mytheresa's luxury fashion catalog, view detailed product information including images, pricing, and variants, and filter by designers and categories. Access comprehensive catalog data with pagination support to discover high-end fashion across all available designers.

**Category:** E-commerce | **Website:** [mytheresa.com/](https://mytheresa.com/) | **Docs:** [parse.bot/marketplace/6a25055c-e12a-42c5-b041-23ab5420179d/mytheresa-com-api](https://parse.bot/marketplace/6a25055c-e12a-42c5-b041-23ab5420179d/mytheresa-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-mytheresa-com-api-6a25055c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_men_catalog

Retrieve the clothing catalog with pagination. Returns product listings including pricing, variants, images, facets for filtering, and sort options. The slug parameter scopes results to a category subtree. Each product in the listing is a summary; use get_product_details with the product's slug for full information including measurements and sustainability data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `size` | integer | No | Number of items per page. |
| `slug` | string | No | Category slug path (e.g. /clothing, /shoes, /bags, /clothing/jackets, /clothing/shorts). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mytheresa-com-api-6a25055c/get_men_catalog \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","size":"<integer>","slug":"<string>"}'
```

### get_men_designer_catalog

Retrieve products from a specific designer's catalog. Returns the same flattened listing structure as get_men_catalog but filtered to a single designer. Includes pagination, facets, sort options, and designer bio metadata.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `designer_slug` | string | Yes | Designer slug without the /designers/ prefix (e.g. gucci, acne-studios, moncler). Obtainable from the slug field in get_men_designers responses by taking the last path segment. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mytheresa-com-api-6a25055c/get_men_designer_catalog \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"designer_slug":"<string>"}'
```

### get_men_designers

Retrieve a list of all available designers with product counts. Returns designers wrapped in a designers array, each containing value (name), slug path, and count. The slug's last segment can be used with get_men_designer_catalog.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mytheresa-com-api-6a25055c/get_men_designers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Retrieve full product details by product slug. Returns comprehensive product information including pricing, all size variants with stock availability, measurements, sustainability info, features (materials/care), and images. The slug can include or omit a leading slash. Valid product slugs are obtained from the slug field in get_men_catalog or get_men_designer_catalog product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_slug` | string | Yes | Product slug from catalog listings (e.g. lemaire-cotton-blend-bermuda-shorts-beige-p01140053). Obtained from the slug field in get_men_catalog or get_men_designer_catalog responses. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mytheresa-com-api-6a25055c/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_slug":"<string>"}'
```

### get_product_images

Retrieve all image URLs for a product. Returns the product SKU and a list of all available image URLs. The slug can include or omit a leading slash. Valid product slugs are obtained from the slug field in get_men_catalog or get_men_designer_catalog product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_slug` | string | Yes | Product slug from catalog listings (e.g. lemaire-cotton-blend-bermuda-shorts-beige-p01140053). Obtained from the slug field in get_men_catalog or get_men_designer_catalog responses. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mytheresa-com-api-6a25055c/get_product_images \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_slug":"<string>"}'
```
