GreedyKING
Ferris-wheel multiplier · crash-style
apx is a white-label, engine-agnostic iframe game platform. A delegated wallet that holds zero balance, multi-tenant integration, and a hash-chained ledger you can verify end to end. Embed in minutes — settle on your terms.
The lineup
Each game ships standalone — its own splash, HUD, and balance display. Provably fair by default, RTP tunable per integrator.
Ferris-wheel multiplier · crash-style
Three-dice table classic
Fast two-card head-to-head
The platform
Four guarantees that make apx safe to put in front of real money and real regulators.
The platform custodies nothing. Your backend owns the wallet and authorizes every debit and credit over HMAC-signed HTTP callbacks. Per-tenant IP, origin, and currency whitelists.
Per-integrator security, currency, and rate config — provisioned and tuned from the admin console. Onboard a new brand without touching code.
One iframe contract: postMessage init, a gateway WebSocket for real-time events. Bring Pixi, Phaser, Three, Unity — or anything that renders in a browser.
Hash-chained, append-only records across wallet, round, and admin services. Every outcome is provably fair and verifiable end to end — by you or by a regulator.
Integration
No SDK lock-in. Issue a session, drop the iframe, answer wallet callbacks.
/v1/sessions. // 1. your backend mints a player session
const { token } = await apx.sessions.create({
integratorId, playerId, currency: "USD",
});
// 2. drop the game into your page
const iframe = document.createElement("iframe");
iframe.src = `https://demo.club78.net/greedyking?t=${token}`;
// 3. apx calls YOUR wallet — HMAC signed
function onWalletDebit(req) {
verifyHmac(req); // reject if bad
return wallet.debit(req.playerId, req.amount);
}
Provably fair
Every round commits a hash before play and reveals the seed after. Anyone can replay the outcome and confirm it was never tampered with — the same verifier we ship powers the in-game proof panel.
Request integrator access and we'll provision a sandbox tenant with live games and wallet callbacks the same day.