Discover/Frette API
live

Frette APIfrette.com

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

Endpoint health
verified 4d ago
search_products
get_bath_products
get_product_detail
find_boutique
get_collection_set
8/8 passing latest checkself-healing
Endpoints
9
Updated
26d ago

What is the Frette 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.

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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/5373e2c7-61ac-4687-82a6-99cac4df1b72/get_product_detail?pid=unito-hand-towel-olive&size=Queen&color=White' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace frette-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Frette SDK — browse luxury linens, drill into details, find stores."""
from parse_apis.frette_api import Frette, Cgid, ProductNotFound

frette = Frette()

# Search for towel products — limit caps total items fetched
for towel in frette.productsummaries.search(query="towel", limit=3):
    print(towel.name, towel.price, towel.url)

# Drill into full product details from a search result
item = frette.productsummaries.search(query="duvet", limit=1).first()
if item:
    product = item.details()
    print(product.name, product.sku, product.fabric)
    print(product.dimensions.cm, product.dimensions.inches)
    print(product.availability.messages, product.availability.inventory_count)

    # Explore matching collection items (shams, sheets, etc.)
    for ci in product.collection_items.list(limit=3):
        print(ci.name, ci.sku)

# Browse by category enum
for p in frette.productsummaries.by_category(cgid=Cgid.BED_LINENS_SHOP_ALL, limit=3):
    print(p.name, p.price)

# Find stores worldwide filtered by city
for store in frette.stores.list(query="Milan", limit=5):
    print(store.name, store.latitude, store.longitude)

# Typed error handling
try:
    bad = frette.productsummaries.search(query="towel", limit=1).first()
    if bad:
        bad.details()
except ProductNotFound as exc:
    print(f"Product not found: {exc.pid}")

print("exercised: search / details / collection_items.list / by_category / stores.list")
All endpoints · 9 totalmissing one? ·

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 via query parameters that map to Demandware variation attributes.

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/BCMC_PRD/on/demandware.static/-/Sites-frette-master-catalog/default/dwa3840fd6/images/large/3FR6238E2400_B101_01.jpg?sw=768&strip=false",
            "index": "0",
            "title": "Grace Sheet Set"
          }
        ]
      },
      "dimensions": {
        "cm": "Top Sheet (240x305), 2 Standard Shams (51x71), Fitted Bottom Sheet (155x205, Depth 38)",
        "inches": "Top Sheet (95x120), 2 Standard Shams (20x28), Fitted Bottom Sheet (61x81, Depth 15)"
      },
      "availability": {
        "messages": [
          "In Stock"
        ],
        "inStockDate": null,
        "inventoryCount": 11
      },
      "long_description": "Soft and smooth to the touch, the Grace Sheet Set is composed of long-staple cotton sateen...",
      "care_instructions": "Machine wash in cold water with mild liquid biodegradable detergent without added bleach or whiteners.",
      "variation_attributes": [
        {
          "id": "color",
          "values": [
            {
              "id": "White",
              "value": "White",
              "selected": true,
              "selectable": true,
              "displayValue": "White"
            }
          ],
          "swatchable": true,
          "attributeId": "color",
          "displayName": "Color"
        }
      ]
    },
    "status": "success"
  }
}

About the Frette API

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.

Reliability & maintenanceVerified

The Frette API is a managed, monitored endpoint for frette.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when frette.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official frette.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
8/8 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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,000100 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.