Skip to main content

iGamingAce Seamless Wallet

The iGamingAce Seamless Wallet API lets you — a licensed casino or gaming platform operator — connect your existing player wallet directly to the iGamingAce gaming platform. iGamingAce accesses your wallet in real time to read balances and record transactions as players bet and win, so you never need to maintain a separate balance store on our side. The result is a single source of truth for player funds, fully under your control.

What “seamless wallet” means

In a traditional integration, the gaming platform holds its own copy of each player’s balance. Funds must be transferred in and out, and reconciliation is ongoing. The seamless wallet model eliminates this: iGamingAce calls your wallet service directly for every balance check and every financial event. Your system remains the authoritative record of player funds at all times.

Two-way integration

The API works in both directions. You call iGamingAce’s platform APIs to fetch game lists and launch sessions. iGamingAce calls your callback service to query balances and post transactions.
DirectionWho calls whomPurpose
Platform APIsYou → iGamingAceRetrieve game catalog, launch games, manage free spins
Callback serviceiGamingAce → YouRead player balance, debit/credit/rollback wallet
Both sides use HTTPS, HTTP POST, and JSON bodies. Every request includes a sign parameter computed with HMAC-SHA-256 so each party can verify the other’s identity.

Technical Overview

All communication uses HTTPS. Every endpoint — both platform APIs and callback endpoints — accepts HTTP POST with a JSON body and Content-Type: application/json.
HTTP 200 is the only success status code. Any non-200 HTTP response is treated as a failure regardless of the response body. Business errors (such as insufficient funds) must be communicated as HTTP 200 with a non-zero result code in the JSON body.
Errors are communicated through the result field in every JSON response. A value of 0 means success; any other value indicates a specific error condition. See Result codes for the full list.