Discover/Baccarat API
live

Baccarat APIbaccarat.com

Search and browse Baccarat's luxury crystal catalog. Get product details, category listings, navigation structure, and store locator data via 5 endpoints.

Endpoint health
verified 2d ago
find_store
search_products
get_product_detail
get_category_products
get_navigation_categories
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Baccarat API?

The Baccarat.com API provides 5 endpoints to search and browse Baccarat's full crystal product catalog, retrieve detailed product specifications, and explore site navigation categories. The get_product_detail endpoint returns physical attributes like height, weight, material, designer, and color variations alongside structured schema.org data. Use search_products to query by keyword or get_category_products to paginate through category-specific listings using IDs from get_navigation_categories.

Try it
Number of results to return per page.
Search keyword (e.g. 'vase', 'crystal', 'rouge 540').
Pagination offset (number of items to skip).
api.parse.bot/scraper/57adbf4a-dd9a-4bbf-87ab-f533659637bb/<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/57adbf4a-dd9a-4bbf-87ab-f533659637bb/search_products?limit=18&query=vase&start=0' \
  -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 baccarat-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: Baccarat SDK — browse luxury crystal catalog, search, and drill into details."""
from parse_apis.baccarat_api import Baccarat, CategoryId, ProductNotFound

client = Baccarat()

# Search for crystal vases — limit caps total items fetched.
for product in client.products.search(query="vase", limit=5):
    print(product.name, product.price, product.currency)

# Browse a category by constructing it from its ID.
category = client.category(cgid=CategoryId.HOME_DECOR)
for item in category.products(limit=3):
    print(item.name, item.brand, item.badge)

# Drill into a single product's full details.
first_product = client.products.search(query="crystal", limit=1).first()
if first_product:
    detail = client.productdetails.get(url=first_product.url)
    print(detail.name, detail.price)
    for variation in detail.variations:
        print(variation.color, variation.id)

# List navigation categories.
for cat in client.categories.list(limit=5):
    print(cat.name, cat.cgid, len(cat.subcategories))

# Typed error handling for a missing product.
try:
    client.productdetails.get(url="https://www.baccarat.com/en_us/nonexistent-product.html")
except ProductNotFound as exc:
    print(f"Product gone: {exc.url}")

# Store locator.
store = client.storelocators.get()
print(store.store_locator_url, store.message)

print("exercised: products.search / category.products / productdetails.get / categories.list / storelocators.get")
All endpoints · 5 totalmissing one? ·

Full-text search over Baccarat's product catalog. Returns a paginated list of matching products. Pagination advances via the start offset; each page returns up to limit items.

Input
ParamTypeDescription
limitintegerNumber of results to return per page.
queryrequiredstringSearch keyword (e.g. 'vase', 'crystal', 'rouge 540').
startintegerPagination offset (number of items to skip).
Response
{
  "type": "object",
  "fields": {
    "limit": "integer, page size used",
    "start": "integer, pagination offset used",
    "products": "array of product objects with name, id, sku, price, currency, brand, category, subcategory, subsubcategory, url, and badge",
    "total_count": "integer, number of products returned in this response"
  },
  "sample": {
    "data": {
      "limit": 18,
      "start": 0,
      "products": [
        {
          "id": "2613138",
          "sku": null,
          "url": "https://www.baccarat.com/en_us/home-decor/fine-pieces/vases/flora-bud-vase-2613138.html",
          "name": "Flora Bud Vase",
          "brand": "BACCARAT",
          "price": 200,
          "category": "Home Decor",
          "currency": "USD",
          "subcategory": "Fine Pieces",
          "subsubcategory": "Vases"
        }
      ],
      "total_count": 18
    },
    "status": "success"
  }
}

About the Baccarat API

Product Search and Category Browsing

The search_products endpoint accepts a required query string (e.g. 'rouge 540', 'vase', 'crystal') and returns paginated results. Each product object in the products array includes name, id, sku, price, currency, brand, category, subcategory, subsubcategory, url, and badge. Pagination is controlled via start (offset) and limit (page size). The total_count field reports the number of items returned in the current page, not the catalog total.

get_category_products works similarly but scopes results to a single category. It requires a category_id such as 'gifts', 'barware-dining', 'fragrance', or 'home-decor'. Category IDs are sourced from get_navigation_categories, which returns the full site navigation tree: an array of category objects each containing name, url, cgid, and a subcategories array. This makes it straightforward to enumerate all browsable paths before querying products.

Product Detail

get_product_detail takes a full product url (obtainable from search or category results) and returns a richer payload than the list endpoints. The attributes object contains physical specs: height, width, weight, material, color, made_in, year_of_creation, and designer. The images array lists all product image URLs. The variations array includes alternate color options, each with its own id, color, url, and image. A json_ld object carries structured schema.org Product data as parsed from the page.

Store Locator

The find_store endpoint takes no inputs and returns a store_locator_url pointing to Baccarat's official boutique and retailer finder, along with an informational message. It does not return individual store records or geocoordinates — it surfaces the locator entry point for users to find nearby points of sale.

Reliability & maintenanceVerified

The Baccarat API is a managed, monitored endpoint for baccarat.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when baccarat.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 baccarat.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
2d ago
Latest check
5/5 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 price-tracking tool that monitors Baccarat product prices by polling search_products with specific collection keywords.
  • Generate a structured product feed for a luxury gift guide using get_category_products with the 'gifts' category ID.
  • Populate a product comparison page with physical specs (height, weight, material, designer) from get_product_detail.
  • Crawl the full catalog hierarchy using get_navigation_categories to enumerate all cgid values before paginating each category.
  • Display color variations for a product listing by reading the variations array from get_product_detail.
  • Index Baccarat products for a luxury goods search engine using the name, sku, category, and url fields from search results.
  • Drive a store-finder feature by linking users to the locator URL returned by find_store.
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 Baccarat offer an official developer API?+
Baccarat does not publish a public developer API or documentation portal. This API is the available programmatic option for accessing their catalog data.
What does `get_navigation_categories` return and how is it used with other endpoints?+
get_navigation_categories returns a categories array where each item includes a name, url, cgid (category ID), and a subcategories array. The cgid values map directly to the category_id parameter in get_category_products, so you can enumerate the full navigation tree first and then fetch products for any branch.
Does `search_products` return the total catalog count across all pages?+
The total_count field in the response reflects the number of products returned in the current page, not an aggregate count across all results. To iterate through more items, increment the start offset by the limit value until you receive fewer items than the page size.
Does the API return customer reviews or ratings for products?+
Not currently. get_product_detail returns product descriptions, physical attributes, images, color variations, and schema.org data, but does not include customer review text or star ratings. You can fork this API on Parse and revise it to add a reviews endpoint if that data is accessible on the product page.
Does `find_store` return individual store locations with addresses or coordinates?+
Not currently. find_store returns a single store_locator_url pointing to Baccarat's official store finder and an informational message — it does not return structured store records with addresses, hours, or geocoordinates. You can fork this API on Parse and revise it to add an endpoint that parses individual store listings.
Page content last updated . Spec covers 5 endpoints from baccarat.com.
Related APIs in EcommerceSee all →
macys.com API
Browse Macy's product catalog by navigating categories, searching for items, and viewing detailed product information all in one place. Discover products across different categories and get comprehensive details to help you find exactly what you're looking for.
bhphotovideo.com API
Search and browse B&H Photo's massive inventory of cameras, electronics, and photography gear with instant access to pricing, specifications, images, and customer reviews. Filter products by category, compare detailed specs, and discover used items all in one integrated platform.
caratlane.com API
Search for jewelry products, browse category listings, and retrieve detailed product information from Caratlane's catalog along with featured homepage items. Access real-time jewelry data including pricing, specifications, and availability across their complete collection.
buybuybaby.com API
Search and browse buybuy BABY products across categories, view detailed product information including prices and reviews, and discover featured items from the home page. Access reliable, up-to-date inventory data to compare products and make informed purchasing decisions.
gap.com API
Search and browse Gap's product catalog by keyword or category, retrieve detailed product information including pricing, available sizes, colors, and customer reviews, get product recommendations, locate nearby Gap retail stores, and explore the full site navigation and category tree.
sephora.com API
Search and browse Sephora's product catalog to find detailed information about beauty items, including specifications, customer reviews, Q&A discussions, pricing, and real-time availability. Filter products by category or brand, and access comprehensive brand listings to discover exactly what you're looking for.
backcountry.com API
backcountry.com API
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.