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
3mo 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 →
mouser.com API
mouser.com API
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
Zalando API – Products, Search & Brands · Parse