Discover/en.zalando.de API
live

en.zalando.de APIen.zalando.de

Access Zalando's en.zalando.de catalog via API. Search products, browse categories, get product details, autocomplete suggestions, and list brands.

Endpoints
5
Updated
4mo ago
Try it
Page number for pagination.
Category URL slug (e.g., 'womens-clothing', 'shoes', 'mens-clothing')
api.parse.bot/scraper/6fe2b064-20ba-45ea-af26-c8dc78f75a30/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/6fe2b064-20ba-45ea-af26-c8dc78f75a30/get_category_products?page=1&category_slug=womens-clothing' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Scrape product listings from a category page on Zalando. Returns a paginated list of products with pricing, variants, and brand information.

Input
ParamTypeDescription
pageintegerPage number for pagination.
category_slugrequiredstringCategory URL slug (e.g., 'womens-clothing', 'shoes', 'mens-clothing')
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "products": "array of product objects with product_id, sku, product_title, brand, price_eur, original_price_eur, currency, thumbnail_url, product_url, status, and variants",
    "total_count": "integer total number of products returned on this page",
    "brands_on_page": "array of unique brand name strings found on this page"
  },
  "sample": {
    "data": {
      "page": 1,
      "products": [
        {
          "sku": "1FI81000E-A11",
          "brand": "Fila",
          "status": "Regular",
          "currency": "EUR",
          "variants": [
            {
              "sku": "1FI81000E-A110538000",
              "size": "35-38",
              "variant_id": "1FI81000E-A110538000"
            }
          ],
          "price_eur": 14.9,
          "product_id": "1FI81000E-A11",
          "product_url": "https://en.zalando.de/fila-invisible-plain-socks-unisex-6-pack-socks-white-1fi81000e-a11.html",
          "product_title": "INVISIBLE PLAIN SOCK UNISEX 6 PACK - Socks - white",
          "thumbnail_url": "https://img01.ztat.net/article/spp-media-p1/1998404d1992463f92f97acb28444e36/978c334eaad74b1498bf680725cfd47e.jpg?imwidth=300&filter=packshot",
          "product_handle": "fila-invisible-plain-socks-unisex-6-pack-socks-white-1fi81000e-a11",
          "original_price_eur": 14.9
        }
      ],
      "total_count": 107,
      "brands_on_page": [
        "Anna Field",
        "Bershka",
        "Fila"
      ]
    },
    "status": "success"
  }
}

About the en.zalando.de API

This API exposes 5 endpoints covering Zalando's English-language German storefront (en.zalando.de), returning product listings, detailed variant data, brand directories, and search autocomplete. The search_products endpoint accepts a keyword query and returns paginated results including price, SKU, brand, thumbnail URL, and per-product variant arrays. The get_product_detail endpoint resolves a single product URL to its full size variant list, current and original EUR prices, and color-inclusive product title.

Product Search and Category Browsing

The search_products endpoint takes a query string (e.g., 'nike shoes', 'red dress') and an optional page integer, returning an array of product objects. Each object includes product_id, sku, product_title, brand, price_eur, original_price_eur, currency, and thumbnail_url. The get_category_products endpoint works the same way but accepts a category_slug (e.g., 'womens-clothing', 'shoes') instead of a keyword, and additionally returns a brands_on_page array listing every unique brand name found in that page of results.

Product Detail and Variants

The get_product_detail endpoint accepts a full product URL or URL path and returns a richer record: all variants as an array of objects with variant_id, sku, and size; price_eur and original_price_eur for discount delta calculation; and product_title which includes the color variant name. This endpoint is the right choice when you need size-level availability data rather than the summary fields returned by search and category listings.

Brands and Autocomplete

The get_brands_list endpoint requires no inputs and returns the full catalog of brands available on Zalando, with each entry containing name, url, and internal id. The get_search_suggestions endpoint takes a partial query string (e.g., 'nik', 'adid') and returns a suggestions array of autocomplete phrase strings, which is useful for building typeahead interfaces or expanding keyword coverage for scraping pipelines.

Pagination and Currency

Both search_products and get_category_products return a page integer and total_count reflecting products on the current page (not a grand total across all pages). All price fields are denominated in EUR. The currency field in product objects confirms the denomination.

Common use cases
  • Track price drops on specific Zalando products by polling get_product_detail and comparing price_eur against original_price_eur.
  • Build a brand-filtered product feed by combining get_brands_list brand IDs with search_products keyword queries.
  • Monitor which brands appear in a category using the brands_on_page field from get_category_products.
  • Populate a typeahead search box with Zalando suggestions by calling get_search_suggestions on partial user input.
  • Aggregate size availability across a product line by collecting variants arrays from multiple get_product_detail calls.
  • Compare current vs. original EUR prices across a category page to identify discount patterns in a fashion segment.
  • Index Zalando's brand directory for competitor or market research using the name, url, and id fields from get_brands_list.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Zalando have an official developer API?+
Zalando operates the Zalando Partner API (https://developer.zalando.com), which is available to registered business partners for order and catalog management. It is not open to general public developers without a partnership agreement. This Parse API provides catalog access without requiring a partnership.
What does `get_category_products` return that `search_products` does not?+
The get_category_products endpoint returns a brands_on_page array listing every unique brand name found in the current page of category results. The search_products endpoint does not include this field. Both return the same core product object structure including sku, price_eur, original_price_eur, thumbnail_url, and brand.
Does the API return stock availability or inventory counts?+
Not currently. The get_product_detail endpoint returns size variants with variant_id, sku, and size, but does not include a stock count or in-stock boolean per size. You can fork this API on Parse and revise it to add an availability field if that data is present on the product page.
Does `total_count` in search and category results reflect the full catalog count for a query?+
No. The total_count field reflects the number of products returned on the current page, not the grand total across all pages. To estimate full result set size, you need to paginate through multiple pages using the page parameter.
Does the API cover Zalando storefronts outside en.zalando.de, such as the German (zalando.de) or UK (zalando.co.uk) stores?+
Not currently. The API is scoped to the English-language German store at en.zalando.de. Prices are in EUR and product URLs reference that domain. You can fork this API on Parse and revise it to target a different regional Zalando storefront.
Page content last updated . Spec covers 5 endpoints from en.zalando.de.
Related APIs in EcommerceSee all →
zalando.it API
Browse and extract product data from Zalando Italy, including search results, category listings, and full product detail pages.
adidas.de API
Search and browse Adidas products on adidas.de to find detailed information about items, availability, pricing, and specific categories. Get comprehensive product details including size availability and stock levels across the German Adidas store.
amazon.de API
Search Amazon.de for products, retrieve detailed product information, customer reviews, seller and offer data, bestseller lists, and autocomplete suggestions.
vinted.de API
Search and browse secondhand items on Vinted.de with customizable filters to find exactly what you're looking for. Get detailed product information including descriptions, categories, colors, and pricing to make informed purchasing decisions.
zara.com API
Shop Zara's entire catalog by browsing categories, searching for specific items, and viewing detailed product information including measurements and related products. Find nearby store locations, check real-time inventory availability, and get shipping details all in one place.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.
asos.com API
Search and browse ASOS's fashion catalog to discover products across women's and men's categories, view real-time pricing and stock information, and find trending or sale items. Get detailed product information, explore similar items, and discover new arrivals and brands all in one place.
hood.de API
Browse and search thousands of products on hood.de, view detailed product information, explore categories, and discover current deals—all with autocomplete suggestions to help you find exactly what you're looking for. Get real-time access to pricing, availability, and special offers from Germany's popular online marketplace.