# Zalando (English) — 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 Zalando's product catalog to find items by category or search, view detailed product information including prices and descriptions, and discover available brands and search suggestions. Get instant access to Zalando's inventory data to compare products, prices, and availability across fashion and lifestyle categories.

**Category:** E-commerce | **Website:** [en.zalando.de/](https://en.zalando.de/) | **Docs:** [parse.bot/marketplace/154f6b40-7a54-459a-871e-b94ee09c765b/en-zalando-de-api](https://parse.bot/marketplace/154f6b40-7a54-459a-871e-b94ee09c765b/en-zalando-de-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-en-zalando-de-api-154f6b40/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_brands_list

Retrieve the complete list of available brands on Zalando via GraphQL. Returns brand names, store page URLs, and internal ERN identifiers. The list is not paginated and returns all brands in a single call.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-en-zalando-de-api-154f6b40/get_brands_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_category_products

Retrieve product listings from a Zalando category page. Returns a paginated list of products with pricing, brand, variant, and status information. Each page returns up to ~100 products depending on category size. Use category slugs like 'womens-clothing', 'shoes', or 'mens-clothing'.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | Yes | Category URL slug (e.g., 'womens-clothing', 'shoes', 'mens-clothing') |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-en-zalando-de-api-154f6b40/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>","page":"<integer>"}'
```

### get_product_detail

Retrieve full product details for a single Zalando product including all size variants. Accepts either a full URL or a relative path. Falls back to GraphQL enrichment if HTML parsing fails. Returns 'input_not_found' if the product page returns 404/410.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_url` | string | Yes | Product URL path or full URL (e.g., 'https://en.zalando.de/nike-sportswear-nsw-af1-trainers-ni111a0is-a12.html' or '/nike-sportswear-nsw-af1-trainers-ni111a0is-a12.html') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-en-zalando-de-api-154f6b40/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_url":"<string>"}'
```

### get_search_suggestions

Retrieve autocomplete suggestions for a partial query from Zalando's GraphQL API. Returns up to 10 phrase suggestions matching the prefix. Useful for building type-ahead UIs or discovering related search terms.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Partial search query (e.g., 'nik', 'adid') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-en-zalando-de-api-154f6b40/get_search_suggestions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_products

Search for products on Zalando using a keyword query. Returns paginated results with product details and variants. Server-side filtering is limited to the query string; any further filtering must be done client-side over the returned list.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword (e.g., 'nike shoes', 'red dress') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-en-zalando-de-api-154f6b40/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
