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
14d 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 →
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.