Everything ZenoxBD does — and exactly how to use it.
ZenoxBD is a multi-vendor storefront platform with AI-powered virtual try-on built in. Sellers launch a branded shop in minutes, shoppers see themselves in an outfit before they buy, and developers can call the same try-on engine from their own site. This page walks through every part of it, step by step, with real screens from the product.
One platform, three moving parts.
A branded shop for the seller, a fitting room for the shopper, and an engine any developer can plug into.
Branded AI storefronts
Every seller gets their own store at zenoxbd.com/yourbrand/store — products, categories, orders, and a live chat inbox, all under one login.
Neural Virtual Try‑On
A shopper uploads one front-facing photo. ZenoxBD's model maps their body and synthesises the garment onto them with pixel-level precision — no photo is ever stored.
VTO API & wallet
The exact same try-on engine is available as an API. Generate a key, top up a wallet, and call it from any website — pay only per try-on.
Which one are you?
Pick a role below — it jumps straight to the right walkthrough.
Walkthroughs, with the real screens.
Every step below is a real page inside ZenoxBD — nothing staged.
Create your store login
Sellers don't sign up with an email — the store itself is the account. Tap Become a Seller on the homepage, switch to Sign Up to create one, or Login if the store already exists.
- Enter your phone number
- Set a Store Secret Key — this doubles as your password
- Tap Login to Store
Add a product
Inside Admin → Products, fill in the basics and drop in a photo. The first image is required and is what the AI uses for try-on — keep it a straight, clear shot.
- Name, price, stock, an optional discount %, and how many days the offer runs
- Pick a category so it lands in the right shelf on the Shop page
- Up to 4 photos — image 1 is required and powers Virtual Try-On
- Toggle Virtual Try-On off for items that shouldn't be tried on (e.g. underwear, swimwear)
Tap Add to Store and it appears instantly in Your Products on the right, and live on the shop page.
Manage incoming orders
The Admin → Orders tab lists every order with status tabs across the top — Pending, Confirmed, Shipped, Delivered, Returned, Cancelled — so you always know what needs attention.
- Filter by date range, or clear to see everything
- Update an order's status directly from the dropdown as it moves
- Open the invoice or remove a test/duplicate order from the action column
Answer customers in Inbox
Every store has a live chat. When a shopper messages from a product page, it lands in Admin → Inbox — with the product they were asking about attached automatically.
- An AI reply goes out first so no one waits
- Jump in and reply as Admin any time to close the sale yourself
- The red counter shows how many chats need a human reply
Check revenue & returns
Admin → Analytics is the store's health check — pick a date range and see money in, money pending, and how many things came back.
- Pending & Processing, this month delivered, this year delivered, and today's order count
- A separate Returns Overview: return requests and total returned
Fund your VTO wallet
Virtual Try-On runs on a prepaid wallet. Open Admin → Top-Up With Chat to buy more, straight from a chat with the Zenox team.
- Tap a quick amount ($5–$200) or type your own, then Pay
- Fill in the deposit amount and the sender number / transaction ID from your payment, then Submit Payment Info
- Balance updates as soon as the team approves it — right there in the same chat
API keys, brand profile & limits
Under Admin → API & Wallet you'll find everything about how the store spends its balance. Settings shows the live token balance and your Brand Profile rank (Bronze → Legend, based on sales) — complete it to appear on the public Explore Brands page. API is where you create keys and watch spend in real time.
- Create multiple keys for different sites, and revoke any of them instantly
- Watch total calls, total spent, and today's calls at a glance
- Set a daily max try-ons per user to keep any one visitor from draining the wallet
Find a store
Start at the Zenox homepage and tap Explore Brands to browse every active store, or go straight to a brand's own page, e.g. zenoxbd.com/madmax/store. Search by name or filter by category once you're inside.
See it on yourself with AI
Open any product and use the Neural Try‑On panel. Upload one clear, front-facing photo — the AI maps your body, then renders the exact garment onto it.
- Tap to upload a photo, then Generate
- Watch the short processing step (skeletal alignment, then rendering)
- Get a result you can share, download, or order straight from
Chat before you buy
Every product page has a live chat in the corner — the AI Stylist & Admin widget. Ask about price, sizing, or stock; the AI answers instantly, and the real seller can jump in too.
Place the order
Tap Order Now from the product page or the try-on result. No account needed — just your delivery details.
- Phone number and full address
- Delivery zone — Inside or Outside Dhaka (each has its own delivery charge)
- Size, then confirm — every order ships Cash on Delivery
Follow the delivery
Head to Track Order and look it up by phone number or order ID. Every order shows a live 4-step timeline — Received, Confirmed, On the Way, Delivered.
- View or download the invoice any time
- Once delivered: request a return, or leave a review
Generate an API key
In Admin → API & Wallet → API, tap Create New Key. Make one per site you plan to integrate with, so you can track or revoke each independently.
Send a try-on request
One POST to /api/v1/vto with a garment image and a user photo returns the rendered result — same engine the Zenox storefronts use.
// Virtual Try-On API integration
fetch('https://zenoxbd.com/api/v1/vto', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
api_key: 'zx_yourbrand_xxxxxxxxxxxxx',
garment_image: garmentBase64OrUrl, // base64 or image URL
user_image: userPhotoBase64, // base64 photo
user_phone: 'optional_user_id' // optional, for daily limits
})
})
.then(r => r.json())
.then(data => {
if (data.success) {
// data.result_image = 'data:image/jpeg;base64,...'
document.getElementById('result').src = data.result_image;
}
});
Track usage and stay within limits
Every call is metered against the store's wallet. Two things worth building around from day one:
- Privacy by design — the API returns the result as a Base64 string; no image is ever stored on Zenox's servers
- Rate limit — each user device is capped at 15 try-ons per minute
Check Usage Logs for a live feed of every try-on, and Settings for the running wallet balance.
Frequently asked questions
Q.What happens to a shopper's photo after try-on?
It's never stored. The photo is processed to render the result and permanently deleted the moment the try-on completes.
Q.What if a seller forgets their Store Secret Key?
The account can't be recovered — Zenox says so directly on the login screen. Store the key the same way you'd store a password.
Q.How does a seller get more VTO tokens?
Through Top-Up With Chat — pick an amount, pay, submit the transaction ID, and the team approves it in the same chat window.
Q.Is there a limit on how many try-ons one shopper can do?
Yes, and it's adjustable. Sellers set a daily max try-ons per user in Settings, and the API itself caps every device at 15 try-ons a minute.
Q.How is delivery priced?
By zone. Inside Dhaka and Outside Dhaka carry different flat delivery charges, shown before checkout — every order is Cash on Delivery.
Q.Can items be excluded from try-on?
Yes — when adding a product, sellers can switch the Virtual Try-On toggle off for sensitive items such as underwear or swimwear.