How to use the Blenda white-label solution
So you run a poster shop or art platform and you want to offer your customers a "view on wall" AR experience, but you don't want it to say "Blenda" anywhere. That's exactly what the white-label plan is for.
What you get
- The AR viewer runs on your own domain, e.g.
ar.yourshop.com - No Blenda branding anywhere in the viewer
- A loading screen you control (text, language, feel)
- Links go directly to your checkout (Shopify, WooCommerce, or anything else)
- Full API access to sync your entire catalog automatically
- Analytics via API or dashboard
Step 1: Get your API key
Go to your Blenda dashboard → Settings → API Keys and generate a key.
Step 2: Set up your subdomain
Add a CNAME record pointing ar.yourshop.com to Blenda's servers. Takes about five minutes.
Step 3: Sync your artworks
One endpoint handles everything. POST to /v1/artworks:
{
"external_id": "your-product-id-123",
"title": "Blue Horizon",
"image_url": "https://yourshop.com/images/blue-horizon.jpg",
"width_cm": 50,
"height_cm": 70
}
You get back an ar_url for the artwork. For each size you sell, add ?w= and ?h= in cm, for example ar.yourshop.com/blue-horizon?w=50&h=70. Store those URLs next to each product variant. The endpoint is idempotent, so the same external_id updates rather than duplicates.
Step 4: Add the button
Link to the ar_url with the selected size added as ?w= and ?h=. Mobile opens AR directly. Desktop shows a QR code.
Get started
Email partners@blenda.art and we'll sort the API key and CNAME - usually within just 1-2 business days.