For brands

Your catalog at the right moment, in the right size

Wardrobio recommends your products when they are really missing from a customer's wardrobe, and already knows their size at your brand.

  • Integration by product feed (JSON, CSV, Shopify, API) with no development on your side
  • Sizes and stock taken from your feed on each update
  • Payment collected by Wardrobio, order forwarded to your system
  • Commission only on completed sales
  • Statistics: detected gaps, virtual try-ons, conversion rate
Request an integration

Feed format

One authenticated POST call is enough to create or update a catalog.

POST /api/catalog/ingest
Authorization: Bearer <key>

{
  "retailer": { "slug": "my-brand", "name": "My Brand", "country": "US" },
  "products": [{
    "external_id": "SKU-1",
    "name": "Linen shirt",
    "category": "top",
    "price": 89, "sale_price": 69, "currency": "USD",
    "image_url": "https://...", "url": "https://...",
    "colors": ["white"], "primary_color": "white",
    "sizes": [{ "size": "M", "in_stock": true }]
  }]
}