Discover/frette.com API
live

frette.com APIfrette.com

Access Frette product details, category listings, search results, collection sets, and boutique locations via a structured JSON API with 9 endpoints.

Endpoints
9
Updated
1mo ago
Try it
Product slug from the URL path (e.g., 'grace-sheet-set', 'divine-duvet-cover').
Selected size variant name (e.g., 'Queen', 'King', 'CalKing').
Selected color variant name (e.g., 'White', 'Milk').
api.parse.bot/scraper/5373e2c7-61ac-4687-82a6-99cac4df1b72/<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/5373e2c7-61ac-4687-82a6-99cac4df1b72/get_product_detail?pid=grace-sheet-set&color=Milk-Olive' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 9 totalclick to expand

Fetch full product details for a single Frette product by product slug. Returns pricing, availability, dimensions, fabric, images, and variant attributes. Supports selecting specific color and size variants.

Input
ParamTypeDescription
pidrequiredstringProduct slug from the URL path (e.g., 'grace-sheet-set', 'divine-duvet-cover').
sizestringSelected size variant name (e.g., 'Queen', 'King', 'CalKing').
colorstringSelected color variant name (e.g., 'White', 'Milk').
Response
{
  "type": "object",
  "fields": {
    "id": "string, internal product variant ID",
    "sku": "string, product SKU code",
    "name": "string, product display name",
    "price": "object containing sales price with value, currency, and formatted fields",
    "fabric": "string, fabric type",
    "images": "object keyed by view type, each containing array of image objects with url and alt",
    "dimensions": "object with cm and inches measurement strings",
    "availability": "object with messages array and inventoryCount",
    "long_description": "string, full product description",
    "care_instructions": "string, care and washing instructions",
    "variation_attributes": "array of variant attribute objects (color, size) with selectable values"
  },
  "sample": {
    "data": {
      "id": "8051834332180",
      "sku": "3FR6238E2432-240I-B101",
      "name": "Grace Sheet Set",
      "price": {
        "list": null,
        "sales": {
          "value": 1575,
          "currency": "USD",
          "formatted": "$1,575.00",
          "decimalPrice": "1575.00"
        }
      },
      "fabric": "Cotton Sateen",
      "images": {
        "Square-PDP": [
          {
            "alt": "Grace Sheet Set",
            "url": "https://www.frette.com/dw/image/v2/..."
          }
        ]
      },
      "dimensions": {
        "cm": "Top Sheet (240x305)...",
        "inches": "Top Sheet (95x120)..."
      },
      "availability": {
        "messages": [
          "In Stock"
        ],
        "inStockDate": null,
        "inventoryCount": 8
      },
      "long_description": "Soft and smooth to the touch...",
      "care_instructions": "Machine wash in cold water...",
      "variation_attributes": [
        {
          "id": "color",
          "values": [
            {
              "id": "White",
              "selected": true,
              "displayValue": "White"
            }
          ],
          "swatchable": true,
          "attributeId": "color",
          "displayName": "Color"
        }
      ]
    },
    "status": "success"
  }
}

About the frette.com API

The Frette API covers 9 endpoints for extracting product data, category listings, store locations, and order status from frette.com. The get_product_detail endpoint returns 10+ fields per product including SKU, fabric type, dimensions in cm and inches, care instructions, variant-level pricing, and availability inventory counts. Category browsing, keyword search, and new arrivals are each addressable with dedicated endpoints.

Product Data

The get_product_detail endpoint accepts a pid (product slug such as grace-sheet-set) along with optional size and color variant selectors. The response includes sku, fabric, long_description, care_instructions, dimensions (both cm and inches), an availability object with an inventoryCount and messages array, and an images object keyed by view type. Prices are returned as structured objects with value, currency, and a pre-formatted display string.

Browsing and Search

get_category_products accepts a cgid parameter (e.g., bed-linens-shop-all, bath-linens-shop-all, new-arrivals) with optional sz and start for pagination. Each product tile in the response carries an id, name, url, price, and swatches array. Three convenience endpoints — get_bedding_products, get_bath_products, and get_new_arrivals — call fixed category IDs without requiring parameters. search_products accepts a query string plus the same sz/start pagination controls and returns a count alongside the product tile array.

Collections and Order Status

get_collection_set takes a parent pid and returns the associated bundle items — matching duvet covers, shams, and related pieces — each with id, name, sku, and price. check_order_status is a POST endpoint that accepts order_number, order_email, and zip_code, returning a status string and redirect URL for guest order lookup.

Store Locations

find_boutique returns all Frette boutique and flagship store locations worldwide. Each store object includes name, latitude, longitude, and storeID. An optional query string filters results by name, address, or city using a case-insensitive substring match, making it useful for geo-based store finders without requiring a coordinates input.

Common use cases
  • Build a bedding comparison tool using get_product_detail to pull fabric, dimensions, and variant pricing across multiple SKUs.
  • Populate a category page feed by calling get_category_products with bed-linens-shop-all and paginating with sz and start.
  • Create a store locator widget using find_boutique latitude/longitude fields to plot Frette boutiques on a map.
  • Monitor new product drops by polling get_new_arrivals and diffing the returned product tile IDs.
  • Build a collection bundle display using get_collection_set to surface matching shams, duvet covers, and accessories alongside a sheet set.
  • Implement keyword search autocomplete or product search results using the search_products query parameter and tile responses.
  • Support guest order lookup flows in a customer service tool using check_order_status with order number, email, and billing ZIP.
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 Frette have an official public developer API?+
Frette does not publish a public developer API or API documentation for third-party access to its product or store data.
What does `get_product_detail` return for product variants, and how do I select a specific one?+
The endpoint returns a single variant's data based on the size and color parameters you pass alongside the pid slug. If you omit those optional parameters, the response reflects the default variant. Each call returns one sku, one price object, one availability block with inventoryCount, and the images keyed to that variant's view types.
Does the API return customer reviews or ratings for products?+
Not currently. The API covers product details (fabric, dimensions, pricing, availability, care instructions), category listings, search results, collection sets, store locations, and order status. You can fork the API on Parse and revise it to add a reviews endpoint if that data is needed.
How does pagination work across the browse and search endpoints?+
The get_category_products and search_products endpoints both accept sz (page size) and start (offset) as optional integer parameters. The response includes a count field reflecting how many products were returned in that page. Increment start by sz to walk through subsequent pages.
Does `find_boutique` return store hours, phone numbers, or contact details?+
Currently the store objects include name, latitude, longitude, and storeID only — hours, phone numbers, and contact details are not part of the response. You can fork the API on Parse and revise it to add those fields if the source exposes them.
Page content last updated . Spec covers 9 endpoints from frette.com.
Related APIs in EcommerceSee all →
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.
selfridges.com API
Search and browse Selfridges fragrance products by keyword, category, or brand. Returns detailed product data including fragrance notes, scent tags, pricing, sizing, and product descriptions.
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.
moodfabrics.com API
Search and browse Mood Fabrics' extensive catalog of fabrics, notions, and accessories with detailed product information including fiber content, weight, and pattern details. Discover blog posts, view color variants, filter collections, and find sale items all from one convenient integration.
wearfigs.com API
Browse and search FIGS medical apparel across women's and men's collections. Filter by category, fabric, color, and size, and surface new arrivals, best sellers, and sale items with detailed product information and customer reviews. Use the complete-the-set feature to retrieve coordinating product variants for any item.
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.
legami.com API
Search and browse Legami's product catalog, view detailed item information and categories, manage shopping carts, and find nearby boutique locations. Streamline online shopping with product discovery, cart management, and store locator features all in one place.
amiparis.com API
Browse Ami Paris products, collections, and search their catalog to find items by name or discover new arrivals and signature collections. Access detailed product information including variants, images, and pricing across all available collections.
Frette.com API – Products, Categories & Stores · Parse