Compare
A remote game server hosts and distributes certified games into regulated casinos. A math engine resolves outcomes. Most teams asking for an RGS need one of its layers — this page pulls them apart so you can buy (or build) only what your product requires.
API example
POST /api/v1/play
Authorization: Bearer cy_live_...
{
"config": "my-game",
"lines": 20
}
{
"result": {
"summary": {
"total_multiplier": 12.5
}
},
"provably_fair": {
"server_seed_hash": "a3f1...",
"nonce": 42
}
}
When operators and studios say they need a remote game server, they usually mean some mix of four distinct layers:
A traditional RGS sells all four as one certified bundle, and in regulated real-money markets that bundle is usually mandatory. But it's rented, not owned: your game runs on someone else's schedule, your math is a black box you get a certificate for, and integration timelines are measured in months.
A slot math engine is layer one, done properly: config in, resolved outcome out, deterministic enough to replay any round after the fact. That's the part of an RGS that decides what actually happened — everything else moves the result around.
Cymba is that layer as a hosted API. You define a game in JSON, POST /api/v1/play, and get back multipliers plus the provably fair material (seed commitment, nonce, replayable derivation) to prove no one — including us — changed the outcome after the bet. PAR sheets, RTP tracking, and verification fixtures come with it, because that's what the math layer owes an auditor.
What Cymba deliberately does not do: host your game client, hold balances, touch money, or file regulatory reports. Multipliers out; your platform does the rest.
You likely need a certified RGS if you're distributing real-money games into licensed markets (MGA, UKGC, New Jersey, and similar). The certification isn't a technical choice — it's a market-access requirement.
You likely need a math engine, not an RGS, if you own the platform and the player relationship: social casinos, sweepstakes operators, crypto casinos whose trust model is provably fair verification rather than lab certification, free-to-play products, and studios validating game math before an RGS deal makes sense.
You might want both — teams building their own RGS or platform can use Cymba as the resolution core and own the hosting, wallet, and reporting layers themselves. The math stays replayable and auditable; the moving parts stay yours.
Cymba does not handle wallets, balances, player accounts, currency, licensing, or jurisdictional compliance. It returns multipliers; operators handle money. If a certified RGS is what your market requires, use one — and hold its math to the same standard: ask for the PAR sheet and a way to replay any round.
Start with a free API key, clone a template, and run your first provably fair spin.