Backend 100% live — start building today
Build apps for
100,000+ WynAI users
Embed any web app inside WynAI Work via iframe. Easy integration, Firebase SSO, real-time webhooks, and 80% revenue share on every sale.
How it works
01
Register your app
Submit app name, iframe URL, icon, and pricing. Reviewed within 24h.
02
Integrate the SDK
Embed your app in an iframe. Receive user tokens via postMessage IPC.
03
Go live & earn
Your app appears in the WynAI App Store. 80% of every transaction goes to you.
80% revenue share — always
Every time a user purchases your app, 80% goes directly to you. Payouts are available in VNĐ (SePay) or USDT. No hidden fees, no surprise deductions.
80%
Your share
Real-time
Webhook after each sale
VNĐ / USDT
Payout currency
Integration in 5 lines
your-app.js
// WynAI sends this once when your iframe loads
window.addEventListener('message', (event) => {
if (event.data?.type === 'INIT_SESSION') {
const { token, userId, locale, theme } = event.data;
// token = Firebase ID token — verify on your backend
myBackend.verifyAndLogin(token, userId);
}
});
// Tell WynAI your app is ready
window.parent.postMessage({ type: 'APP_READY' }, '*');That's it. Full IPC protocol →