Discover/Hunkemoller API
live

Hunkemoller APIhunkemoller.com

Access Hunkemöller's product catalog, search, category filters, new arrivals, and store locations via a structured JSON API with 6 endpoints.

Endpoint health
verified 4d ago
get_stores
get_new_arrivals
get_category_products
get_product_details
search_products
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Hunkemoller API?

The Hunkemöller API provides 6 endpoints covering product browsing, keyword search, detailed product data, store locations, and category filters for Hunkemöller's lingerie and intimate apparel catalog. The get_product_details endpoint returns fields including SKU, color, material composition, available sizes, pricing, and aggregate ratings, giving a complete view of any individual product.

Try it
Number of products per page
Pagination offset
Category URL path, e.g. /bras/all-bras
api.parse.bot/scraper/533b5b4a-b4a9-4266-a41f-a4ab582a17b2/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/533b5b4a-b4a9-4266-a41f-a4ab582a17b2/get_category_products?sz=6&start=0&category_path=%2Fbras%2Fall-bras' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace hunkemoller-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Hunkemöller SDK — browse, search, inspect, and locate stores."""
from parse_apis.hunkemöller_api import Hunkemoller, ProductNotFound

client = Hunkemoller()

# Browse bras category — limit caps total items fetched
for product in client.productsummaries.list(category_path="/bras/all-bras", limit=3):
    print(product.name, product.offers.price, product.aggregate_rating.rating_value)

# Search for a keyword and drill into the first result's full details
item = client.productsummaries.search(query="padded bra", limit=1).first()
if item:
    detail = item.details()
    print(detail.name, detail.color, detail.offer.price)
    for mat in detail.material:
        print(mat.name, mat.value)

# Get product details directly by URL
try:
    product = client.products.get(product_url="/super-comfort-bra-beige-306397.html")
    print(product.name, product.sizes)
except ProductNotFound as exc:
    print(f"Product gone: {exc}")

# List all store locations (single page, capped)
for store in client.stores.list(limit=3):
    print(store.name, store.city, store.is_open, store.current_hours.open)

# Get category filters
for f in client.filters.list(category_path="/bras/all-bras", limit=5):
    print(f.title, f.type)

print("exercised: productsummaries.list / productsummaries.search / details / products.get / stores.list / filters.list")
All endpoints · 6 totalmissing one? ·

Get paginated products for a category path. Returns product listings with name, SKU, price, images, and ratings. Offset-based pagination via start parameter; each page returns up to sz items from a total pool.

Input
ParamTypeDescription
szintegerNumber of products per page
startintegerPagination offset
category_pathrequiredstringCategory URL path, e.g. /bras/all-bras
Response
{
  "type": "object",
  "fields": {
    "sz": "integer — page size used",
    "items": "array of product summary objects with name, category, sku, url, offers, images, aggregateRating",
    "start": "integer — current pagination offset",
    "total_items": "integer — total number of products in the category",
    "category_name": "string — name of the category"
  }
}

About the Hunkemoller API

Product Catalog and Search

The get_category_products endpoint accepts a category_path parameter (e.g. /bras/all-bras) and returns paginated product listings. Each item in the items array includes name, sku, url, offers (price and currency), images, and aggregateRating. Pagination is controlled via sz (page size) and start (offset), and total_items tells you how many products exist in the category. The search_products endpoint accepts a query string and returns the same product shape, letting you find items across the full catalog by keyword.

Product Details and Filters

get_product_details takes a product_url slug and returns the deepest product data: description, color, sizes (as a string array), material (an array of objects with name and percentage value), offer (with price, availability, and currencyCode), and aggregateRating with both ratingValue and reviewCount. The get_category_filters endpoint takes the same category_path and returns a structured filters array where each filter has a title, a type (either list or range), and either an options array or min/max bounds — useful for building faceted navigation or scraping which filter values are available for a given category.

New Arrivals and Store Locations

get_new_arrivals returns paginated new-arrival products, optionally scoped to a category such as bras or panties. It shares the same item shape as get_category_products. The get_stores endpoint requires no inputs and returns the full list of physical Hunkemöller store locations worldwide, with each store record containing name, address, city, latitude, longitude, isOpen (current status), and openingHours. The total_count field gives the full store count in one call.

Reliability & maintenanceVerified

The Hunkemoller API is a managed, monitored endpoint for hunkemoller.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when hunkemoller.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official hunkemoller.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a lingerie price tracker that monitors offer prices across bra and panty categories using get_category_products
  • Populate a product comparison tool with material composition, available sizes, and ratings from get_product_details
  • Drive a store locator feature using latitude, longitude, and opening hours from get_stores
  • Implement faceted search UI by reading filter titles and options from get_category_filters for a given category path
  • Track new arrivals by category (bras, panties) with get_new_arrivals and alert on new SKUs
  • Aggregate review counts and rating values across a category to identify top-rated products
  • Sync Hunkemöller product data including images and SKUs into an internal product database via search_products
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 Hunkemöller have an official public developer API?+
No. Hunkemöller does not publish a public developer API or developer portal for third-party access to their product or store data.
What does get_product_details return beyond basic pricing?+
It returns the full product description, color, an array of available sizes, material composition as name/percentage pairs, offer availability and currency code, and aggregate rating with both a numeric rating value and a review count. It also includes an array of image objects with url, height, and width.
Does get_category_filters return price range data as well as list filters?+
Yes. Each filter object in the returned array has a type field that is either list (with an options array) or range (with min and max numeric bounds), so price range and size list filters are both represented in the same response structure.
Are individual product reviews or review text exposed by the API?+
Not currently. The API returns aggregate rating data — ratingValue and reviewCount — from get_product_details, but individual review text, reviewer names, and per-review scores are not included. You can fork this API on Parse and revise it to add an endpoint targeting individual review data.
Does the API cover all regional Hunkemöller storefronts and currencies?+
The get_stores endpoint returns worldwide store locations and get_product_details includes a currencyCode field in the offer object, but the API does not currently expose region-specific pricing per locale or multi-currency price variants for the same product. You can fork it on Parse and revise to target a specific regional storefront if alternate pricing is needed.
Page content last updated . Spec covers 6 endpoints from hunkemoller.com.
Related APIs in EcommerceSee all →
H&M API
Access H&M's product catalog, search, category navigation, sale and new-arrival listings, product details, similar-item recommendations, and US store locations.
hanes.com API
Search and browse Hanes clothing products across categories like men's, women's, and sale items, and retrieve detailed information including sizes, colors, and real-time availability. Find exactly what you're looking for with product variants and comprehensive details to compare options before purchase.
hm.com API
Search H&M's US product catalog by keyword and instantly retrieve detailed information like prices, product images, available sizes, and real-time stock availability. Perfect for comparing items, tracking product details, or building shopping applications powered by H&M's current inventory data.
abercrombie.com API
Search and browse Abercrombie & Fitch products across categories, new arrivals, and clearance items while retrieving detailed product information like pricing and availability. Access curated collections and find exactly what you're looking for with powerful search capabilities.
hagebau.de API
Browse Hagebau's complete product catalog, search across thousands of items by category and brand, and check real-time store availability for building materials and home improvement products. Access detailed product specifications, filter by brand, and discover what's in stock at your nearest location.
ah.nl API
Search Albert Heijn products, browse categories, view weekly bonus offers, and fetch detailed product information including nutrition and supplier contact details.
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.
en.zalando.de API
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.
Hunkemöller API – Products, Search & Stores · Parse