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
4mo 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 →
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.
yoox.com API
Search and browse YOOX's fashion catalog to discover products by category, designer, new arrivals, and sale items. Get detailed product information to find exactly what you're looking for across the YOOX marketplace.
mytheresa.com API
Browse and search Mytheresa's luxury fashion catalog, view detailed product information including images, pricing, and variants, and filter by designers and categories. Access comprehensive catalog data with pagination support to discover high-end fashion across all available designers.
quince.com API
Search and browse Quince's product catalog across women's clothing and all other categories, getting detailed information like prices, descriptions, and availability for each item. Explore product categories to discover collections and find exactly what you're looking for on Quince.
net-a-porter.com API
net-a-porter.com API
stylishop.com API
Browse and search stylishop.com's complete fashion catalog, including products, categories, brands, reviews, and trending data to discover new arrivals and sale items. Get product details, size guides, autocomplete suggestions, and trending search insights to enhance your shopping experience.
revolve.com API
Browse Revolve.com's fashion inventory by searching products, filtering by category or sale status, and discovering new arrivals in real-time. Access detailed product information including pricing, descriptions, and availability to power your shopping app or fashion platform.
cos.com API
Search and browse COS fashion products by name or category to instantly access pricing, product images, and direct links to items. Retrieve detailed information about specific products including descriptions, availability, and pricing to compare styles and make informed shopping decisions.