Discover/Andtradition API
live

Andtradition APIandtradition.com

Access &Tradition's full product catalog via API. Retrieve 410+ furniture, lighting, and objects with specs, variants, designer info, and photos.

This API takes change requests — .
Endpoint health
verified 4h ago
get_product
list_products
2/2 passing latest checkself-healing
Endpoints
2
Updated
5h ago

What is the Andtradition API?

The &Tradition API exposes two endpoints covering the brand's full product catalog of 410+ items, including furniture, lighting, and decorative objects. list_products returns pageable summary data for every item in the catalog with optional category filtering, while get_product delivers complete detail records including dimensions, materials, certifications, variant images, and structured designer attribution by product slug.

This call costs2 credits / call— charged only on success
Try it
Category tag ID to filter products. Known values include: 265 (Furniture), 30 (Lighting), 1755 (Classics), 1339 (EU Ecolabel), 1657 (New Collection), 41 (Objects), 1792 (Outdoor). Omitting returns all products.
api.parse.bot/scraper/4445a5ca-ab9f-4fe3-916f-833cbd65ead7/<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/4445a5ca-ab9f-4fe3-916f-833cbd65ead7/list_products?category=30' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

List all &Tradition products with summary information. Returns the full catalog (410+ products) in a single response sorted alphabetically by title. Optionally filter by category tag ID (e.g. 265 for Furniture, 30 for Lighting). Each product includes its slug which can be passed to get_product for full details.

Input
ParamTypeDescription
categorystringCategory tag ID to filter products. Known values include: 265 (Furniture), 30 (Lighting), 1755 (Classics), 1339 (EU Ecolabel), 1657 (New Collection), 41 (Objects), 1792 (Outdoor). Omitting returns all products.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of products returned",
    "products": "array of product summary objects"
  },
  "sample": {
    "data": {
      "total": 410,
      "products": [
        {
          "id": 83305,
          "url": "https://www.andtradition.com/products/numbra-ty1",
          "slug": "numbra-ty1",
          "tags": [
            175,
            30,
            1657
          ],
          "label": "Pendant",
          "title": "Numbra",
          "designers": [
            "Teruhiro Yanagihara"
          ],
          "full_title": "Numbra TY1",
          "description": "Rooted in the elemental idea of the straight line, Numbra is Teruhiro Yanagihara’s first collection for &Tradition.",
          "superscript": "TY1",
          "primary_image": "https://wp.andtradition.com/wp-content/uploads/2023/08/ATD_Lifestyle-Images_Collection-2026.02_Numbra-TY1_Drawn-HM4_Momento-JH38_Ita-OS1-600x800.jpg",
          "variants_count": 1,
          "secondary_image": "https://wp.andtradition.com/wp-content/uploads/2023/08/ATD_Packshots_158652A595_Numbra-TY1_Lacquered-Oak-w-Aluminium_Front_Horizontal_ON-600x800.jpg"
        }
      ]
    },
    "status": "success"
  }
}

About the Andtradition API

Catalog Listing

The list_products endpoint returns the entire &Tradition catalog in a single alphabetically sorted response. Each product summary includes a slug identifier, title, and associated category tag IDs. To narrow results, pass a category parameter using a known tag ID: 265 for Furniture, 30 for Lighting, 1755 for Classics, or 133 for additional groupings. The response includes a total count alongside the products array, making it straightforward to check catalog size per category.

Product Detail

Passing a slug from the listing response to get_product returns a full detail record. The response includes the canonical url, year of design, a label describing the product type, and a full_title with the model code. The variants array contains per-variant objects with title, description, thumbnail, an images array, and any applicable certifications. Designer credit is provided via a designers array, each entry carrying a name and slug for further lookup.

Specifications and Attribution

Product specifications — dimensions, materials, maintenance notes, and certifications — are nested within the variant-level data returned by get_product. The tags array on each product maps back to the category IDs used for filtering in list_products, allowing you to cross-reference a product's classification without a separate call. Design year (year) and the full model code in full_title are useful for provenance tracking and catalog management applications.

Reliability & maintenanceVerified

The Andtradition API is a managed, monitored endpoint for andtradition.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when andtradition.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 andtradition.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
4h ago
Latest check
2/2 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 searchable furniture reference tool filtered by category tag IDs like 265 (Furniture) or 30 (Lighting)
  • Sync &Tradition product data including variant images and dimensions into an interior design platform
  • Generate designer attribution pages by aggregating the designers array across products sharing a designer slug
  • Track the classic collection by filtering list_products with category tag 1755 and comparing design years
  • Populate a product comparison tool with specifications and certifications from the variants array
  • Create a visual catalog browser using the per-variant thumbnail and images arrays returned by get_product
  • Monitor catalog size changes over time using the total count returned by list_products
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does &Tradition offer an official developer API?+
&Tradition does not publish a public developer API or documented data access program as of this writing.
How does filtering work in list_products, and what category IDs are available?+
Pass a category query parameter with a numeric tag ID. Documented values include 265 (Furniture), 30 (Lighting), and 1755 (Classics). The same IDs appear in the tags array on each product returned by get_product, so you can verify a product's categories from either endpoint. Products belonging to multiple categories will appear in each relevant filtered result.
Are pricing or retail availability data included in product responses?+
Not currently. The API covers product metadata, specifications, variant imagery, certifications, and designer attribution. Pricing and stock availability are not fields in the current response schema. You can fork the API on Parse and revise it to add an endpoint targeting that data.
Does get_product return individual designer profile details beyond name and slug?+
The designers array includes each designer's name and slug, but extended profile content such as biography, portrait images, or a list of other works by that designer is not currently returned. The API covers product-level attribution. You can fork it on Parse and revise to add a dedicated designer detail endpoint using the designer slug.
Is the full catalog always returned in one response from list_products, or is there pagination?+
list_products returns the full catalog (410+ products) in a single response sorted alphabetically, with no pagination parameters. For filtered subsets, use the category parameter to reduce payload size.
Page content last updated . Spec covers 2 endpoints from andtradition.com.
Related APIs in EcommerceSee all →
stories.com API
Search & Other Stories' catalog to find products by name or category, and retrieve detailed information including pricing, images, available sizes, colors, and materials for each item. Get comprehensive product details to compare styles, check inventory across variations, and make informed shopping decisions.
lifeinteriors.com.au API
Search and browse furniture products from Life Interiors' catalog to discover home decor items, view collection details, and access individual product information. Find the perfect pieces for your home by exploring their Australian furniture and interiors selection.
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.
zarahome.com API
Search and browse Zara Home's furniture and home décor catalog. Retrieve product details including name, category, price, available sizes or dimensions, materials, colors, and availability status. Browse by category or search by keyword across the full product range.
egecarpets.com API
Browse Ege Carpets' complete product catalog and retrieve detailed specifications for any carpet, including materials, weight, structure, backing options, and available colors. Find exactly what you need by searching their inventory and accessing comprehensive product information to compare and make informed purchasing decisions.
furniture.com API
Search and browse Furniture.com's product catalog by keywords, then narrow results using filters like color, material, style, type, and brand. Sort by price or ratings and navigate through results with pagination to find the perfect furniture for your needs.
chairish.com API
Search and browse vintage furniture and decor listings on Chairish, view detailed product information with pricing and availability, and research sellers through their profiles and customer reviews. Explore product categories and discover shop recommendations to find exactly what you're looking for.
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.