Plans & Pricing

All tools, your AI team, and autonomous money projects — pick a plan.

💸 Autonomous profit share. When you launch an autonomous money project, the platform takes a share of the revenue it generates for you (lower on higher tiers) and you keep the rest — there's no cut on anything you make manually. You accept the Autonomous Service Agreement before launching. The system never spends or publishes without your approval, and profit is never guaranteed.
+ p.amount + '/' + (p.interval === 'week' ? 'wk' : 'mo') + '' : 'Free'} ${p.revShare}% autonomous profit share ${p.amount ? `` : ''} `).join(''); } async function subscribe(plan) { try { const r = await fetch('api/billing/subscribe', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ plan }) }); const d = await r.json(); if (d.url) location.href = d.url; else alert(d.error || 'Billing not configured yet.'); } catch (e) { alert('Could not start checkout.'); } } load();