Discover/mytheresa.com API
live

mytheresa.com APImytheresa.com

Access Mytheresa's luxury fashion catalog via API. Retrieve products, pricing, variants, designer listings, and images with pagination and category filtering.

Endpoints
5
Updated
14d ago
Try it
Page number for pagination.
Number of items per page.
Category slug path (e.g. /clothing, /shoes, /bags, /clothing/jackets).
api.parse.bot/scraper/48521b8f-a4c8-44fe-9aae-5b11cae45a10/<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/48521b8f-a4c8-44fe-9aae-5b11cae45a10/get_men_catalog?page=1&size=5&slug=%2Fclothing' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Get the clothing catalog with pagination. Returns product listings including pricing, variants, images, and facets for filtering.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sizeintegerNumber of items per page.
slugstringCategory slug path (e.g. /clothing, /shoes, /bags, /clothing/jackets).
Response
{
  "type": "object",
  "fields": {
    "listing": "object containing products array, pagination, facets, and sort options",
    "metadata": "object containing page SEO metadata, content banners, and description"
  },
  "sample": {
    "data": {
      "listing": {
        "sort": {
          "params": [
            "recommendation",
            "new_item",
            "price_asc"
          ],
          "currentParam": "recommendation"
        },
        "facets": {
          "designers": {
            "options": [
              {
                "slug": "/designers/a-presse",
                "count": 51,
                "value": "A.Presse"
              }
            ]
          }
        },
        "products": [
          {
            "sku": "P01189004",
            "name": "GG Canvas cotton jacket",
            "slug": "/gucci-gg-canvas-cotton-jacket-beige-p01189004",
            "price": {
              "original": 275000,
              "currencyCode": "USD"
            },
            "designer": "Gucci"
          }
        ],
        "pagination": {
          "totalItems": 5910,
          "totalPages": 493,
          "currentPage": 1,
          "itemsPerPage": 12
        },
        "displayName": "Clothing"
      },
      "metadata": {
        "name": "Clothing",
        "slug": "men/clothing",
        "metadata": {
          "title": "Men's Designer Clothes | Mytheresa"
        }
      }
    },
    "status": "success"
  }
}

About the mytheresa.com API

The Mytheresa API exposes 5 endpoints for accessing the men's luxury fashion catalog on mytheresa.com, covering product listings, designer directories, and full product details. The get_product_details endpoint returns over a dozen fields per item — including price with discount percentage, size variants with stock availability, materials, sustainability info, and multiple image URLs — identified by a product slug obtained from catalog or designer listing endpoints.

Catalog Browsing and Filtering

The get_men_catalog endpoint returns paginated product listings across Mytheresa's men's categories. Pass a slug parameter such as /clothing, /shoes, or /clothing/jackets to scope results to a subcategory. The listing response object includes a products array, pagination metadata, sort options, and facets for further filtering. The metadata object carries page-level SEO content and promotional banners. Both page and size parameters control pagination depth.

Designer Discovery and Filtering

get_men_designers returns a flat array of all designers present in the catalog, with each entry carrying a value (display name), count (number of products), and slug for use with get_men_designer_catalog. Passing a designer_slug like gucci or acne-studios to get_men_designer_catalog returns the same listing structure as the main catalog but scoped to that designer, including a designer bio in the metadata object.

Product Detail and Image Data

get_product_details accepts a product_slug — such as gucci-gg-canvas-cotton-jacket-beige-p01189004 — sourced from any catalog listing's slug field. The response includes sku, name, designer, description, features (materials and care), sizeAndFit, designerInfo (with designerId and designerSlug), a price object with currencyCode, original, discount, and percentage, and a variants array covering per-size stock and pricing. get_product_images returns the same product_id alongside a dedicated image_urls array when only image URLs are needed without the full detail payload.

Coverage Scope

All catalog, designer, and product endpoints currently cover the men's section of mytheresa.com. Product slugs are the consistent key linking listings to details — any slug returned in a get_men_catalog or get_men_designer_catalog products array is valid input for both get_product_details and get_product_images.

Common use cases
  • Build a luxury menswear price tracker using the price object fields — original, discount, and percentage — from get_product_details.
  • Aggregate designer product counts across Mytheresa's catalog using get_men_designers to benchmark brand presence.
  • Populate a comparison tool with variant-level stock and sizing data from the variants array in get_product_details.
  • Feed a fashion recommendation engine with category-filtered listings from get_men_catalog using subcategory slugs like /shoes or /bags.
  • Sync product images into a digital asset pipeline using get_product_images for bulk image URL retrieval by product slug.
  • Analyze material and sustainability attributes across categories by extracting the features array from product detail responses.
  • Monitor a specific designer's catalog size and inventory over time by polling get_men_designer_catalog with a designer slug.
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 Mytheresa offer an official public developer API?+
Mytheresa does not publish a public developer API or API documentation for third-party use. There is no official developer portal or access program listed on mytheresa.com.
What does `get_product_details` return beyond basic name and price?+
Beyond name and price, the endpoint returns sku, designer, description, a features array with material and care instructions, sizeAndFit descriptions, a designerInfo object with ID and slug, a variants array with per-size stock and pricing, and a displayImages array of image URLs.
Can I filter the men's catalog by both category and designer at the same time?+
get_men_catalog accepts a category slug parameter and get_men_designer_catalog accepts a designer_slug parameter, but these are separate endpoints — there is no single endpoint that combines both filters simultaneously. The API covers category-scoped browsing and designer-scoped browsing as distinct queries. You can fork it on Parse and revise it to add a combined filter endpoint.
Does the API cover the women's or kids' sections of Mytheresa?+
Not currently. All five endpoints cover the men's catalog only — product listings, designer directory, and product details are scoped to the men's section. You can fork it on Parse and revise it to add endpoints covering women's or kids' categories.
How fresh is the pricing and stock data returned by the product endpoints?+
The price and variants fields in get_product_details reflect the state of the listing at the time the request is made. Luxury inventory and promotional pricing on Mytheresa can change frequently, so applications that depend on real-time availability or price accuracy should re-query per product rather than cache responses for extended periods.
Page content last updated . Spec covers 5 endpoints from mytheresa.com.
Related APIs in EcommerceSee all →
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.
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.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
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.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
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.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.