Discover/ssense.com API
live

ssense.com APIssense.com

Access SSENSE product listings, designer catalogs, pricing, sizing, and real-time inventory data via a structured API. 4 endpoints covering men, women, and more.

Endpoints
4
Updated
3mo ago
Try it
Page number for pagination
Sort order for results
Search query to filter products by keyword
Filter by size (e.g. 30, 32, M, L)
Filter by color (e.g. black, white, gray)
Section to browse: men, women, everything-else
Category slug (e.g. clothing, shoes, bags, accessories, jackets-coats, jeans, pants)
Filter by designer slug (e.g. rick-owens, acne-studios)
api.parse.bot/scraper/961cc1db-cd90-4a3b-8931-372d3c020097/<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/961cc1db-cd90-4a3b-8931-372d3c020097/list_products?page=1&section=men' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

List products for a section (men, women, everything-else) with optional category and filters. Returns paginated results sorted by the site's default or specified order.

Input
ParamTypeDescription
pageintegerPage number for pagination
sortstringSort order for results
querystringSearch query to filter products by keyword
sizesstringFilter by size (e.g. 30, 32, M, L)
colorsstringFilter by color (e.g. black, white, gray)
sectionstringSection to browse: men, women, everything-else
categorystringCategory slug (e.g. clothing, shoes, bags, accessories, jackets-coats, jeans, pants)
designersstringFilter by designer slug (e.g. rick-owens, acne-studios)
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "total": "integer total number of matching products",
    "products": "array of product objects with id, brand, name, gender, seo_keyword, url, price, and images",
    "total_pages": "integer total number of pages"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 0,
      "products": [
        {
          "id": "19236851",
          "url": "/men/product/acne-studios/brown-suede-saddle-loafers/19236851",
          "name": "Brown Suede Saddle Loafers",
          "brand": "Acne Studios",
          "price": {
            "regular": 670,
            "currency": "USD",
            "formatted": "$670"
          },
          "gender": "men",
          "images": [
            "https://res.cloudinary.com/ssenseweb/image/upload/__IMAGE_PARAMS__/262129M231000_1.jpg"
          ],
          "seo_keyword": "brown-suede-saddle-loafers"
        }
      ],
      "total_pages": 23
    },
    "status": "success"
  }
}

About the ssense.com API

The SSENSE API exposes 4 endpoints for querying luxury fashion product listings, detailed product data, designer and brand catalogs, and real-time SKU-level inventory status across SSENSE's men, women, and everything-else sections. The list_products endpoint supports filtering by designer slug, color, size, category, and keyword, returning paginated results with price and image data for each product.

Product Listings and Search

The list_products endpoint accepts a section parameter (men, women, everything-else) and an optional category slug such as clothing, shoes, or jeans. Results can be narrowed further with designers (e.g. rick-owens, acne-studios), colors, sizes, query (keyword search), and a sort order. Each page of results includes an array of product objects with fields for id, brand, name, gender, url, price, seo_keyword, and images, along with total and total_pages for pagination.

Product Details

get_product_details takes a full SSENSE product URL and returns a richer data shape: color, category, description, composition, a model object with measurements and size worn, a price object with currency, numeric amount, and formatted string, and a sizes array where each entry includes id, sku, size label, and an in_stock boolean. This endpoint is the right source for building a product detail page or feeding a price-tracking system.

Designer and Brand Catalog

list_designers returns navigation-level data for a given section: a brands array with each designer's id, name, seoKeyword, and docCount (number of products available), a hierarchical categories array with parent/child structure, and a colors array. It also returns countries configuration and default_country_languages, which reflect region-specific shipping and pricing context.

Inventory Checks

get_inventory accepts a SKU string obtained from get_product_details (via sizes[*].sku) and returns a skus object with granular inventory details plus a top-level inStock boolean. This is useful for monitoring size availability on specific products without re-fetching the full product record.

Common use cases
  • Track price changes on specific luxury products by polling get_product_details for the price.amount field
  • Build a size-availability alerting system using get_inventory with SKUs from get_product_details
  • Aggregate designer product counts from list_designers to analyze brand breadth across sections
  • Filter list_products by designers and sizes to surface in-stock items for a specific brand and fit
  • Compile a structured catalog of SSENSE product images and metadata for a fashion lookbook or comparison tool
  • Monitor new arrivals by querying list_products with a sort parameter and comparing against a stored product list
  • Extract model measurements from get_product_details to build a size-recommendation layer for specific products
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 SSENSE have an official public developer API?+
SSENSE does not publish a public developer API or offer API keys for external developers. There is no documented REST or GraphQL API listed on their website for third-party use.
What does the `get_product_details` endpoint return beyond basic listing data?+
Beyond the fields in list_products, get_product_details returns color, category, a model object with body measurements and the size worn by the model, a price object with currency and formatted string, a sizes array with per-size sku and in_stock status, and an images array. It requires the full SSENSE product URL as input.
Can I retrieve customer reviews or ratings for products?+
No customer review or rating data is currently returned by any endpoint. The API covers product metadata, pricing, sizing, inventory, and brand/category navigation. You can fork this API on Parse and revise it to add a reviews endpoint if that data becomes accessible.
How does pagination work in `list_products`?+
The list_products endpoint accepts an integer page parameter and returns page (current), total_pages, and total (matching product count) alongside the products array. Iterate through pages by incrementing page until it reaches total_pages.
Does the API expose sale or discount pricing?+
The price object in get_product_details includes currency, a numeric amount, and a formatted price string. There is no dedicated field for original price or discount percentage currently returned. You can fork this API on Parse and revise it to surface sale price fields if the source exposes them.
Page content last updated . Spec covers 4 endpoints from ssense.com.
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.