Free Tier
Cymba gives developers a free API key, full dashboard access, and a working slot game config from day one. Build, test, and validate your integration before you need a paid plan.
API example
POST /api/v1/play
Authorization: Bearer cy_live_...
{
"config": "starter-5-reel",
"lines": 20
}
{
"result": {
"round_id": "e12d904b7c68...",
"summary": {
"total_multiplier": 0,
"breakdown": {}
}
},
"provably_fair": {
"server_seed_hash": "b5d2a9...",
"client_seed": "d41f7c...",
"nonce": 1
}
}
Cymba's free tier is a full development environment, not a stripped-down preview.
When you create a free account you get an API key, access to the dashboard, the config editor, the playground spin tester, RTP calculation, PAR sheet exports, and provably fair material on every spin response. You can build and test a complete integration before paying anything.
The free tier is rate-limited and intended for development rather than live player traffic. It does not expire after a trial period.
Building a slot game integration has a lot of moving parts: config design, API calls, result parsing, front-end rendering, feature event handling, and provably fair flows.
A free tier that gives you the full API surface means you can work through all of those pieces without billing pressure. By the time you need a production key, the integration is already built and tested.
Free-tier API keys call the same spin engine as every paid tier. Spin results include real reel positions, win evaluations, feature events, and provably fair fields. The response shape never changes as your plan grows.
That means your integration code does not need to change at production time — the same cy_live_ key and config IDs carry over; upgrading a plan only raises your quotas.
The fastest path:
/api/v1/play from your own app with the config ID.total_multiplier and apply it to your player's stake.From there you can edit the config, recalculate RTP, export a PAR sheet, and test edge cases in the playground.
The free tier is rate-limited and not suitable for production player traffic. For live deployments with real volume, paid plans raise the quotas and rate limits on the same keys — join the waitlist from the pricing page.
Cymba does not handle wallets, balances, player accounts, licensing, or compliance on any tier. Those are platform responsibilities.
Start with a free API key, clone a template, and run your first provably fair spin.