LivePlay Bingo Integration Docs

Quick start — aggregator

Launch our game through Gametech (VisionLINK) or another aggregator

If your casino already integrates with Gametech (VisionLINK) (or another aggregator that speaks our launcher contract), this is the fastest path to a playable embed.

Prerequisites

  • Active integration with the aggregator
  • Our gamecode (we'll give it to you during onboarding)
  • Sandbox credentials from us — IP allowlisted both directions

Flow

1. Player clicks "Play Bingo" in your casino UI
2. Your backend asks the aggregator to launch the game
3. The aggregator calls our POST /gamelauncher/play
4. We return a launch URL with a short-lived launchCode
5. The aggregator returns the launch URL to your backend
6. Your frontend embeds the launch URL in an iframe
7. The player plays. Round outcomes land in your aggregator's wallet
   record — there are no iframe events to listen for.

You don't implement any of our API directly — the aggregator does.

What you actually do

  1. Configure the game in your aggregator panel. Pick our gamecode. Set stake limits and currencies for your brand.
  2. Embed the launch URL the aggregator returns. See Embedding the game for the iframe contract.
  3. Provide your own iframe wrapper UI — close button, "back to lobby" etc. The iframe doesn't emit lifecycle events to your page today, so this UI lives outside the iframe.
  4. Test in DEMO mode before going live. We'll give you a DEMO launch URL you can hit directly without a wallet.

For early testing without a round-trip through your aggregator account, Gametech provides a direct DEMO launch URL on their sandbox:

https://vip-test-nl.reelsoft.net/gamelauncher/play/DEMO/<gamecode>?authtoken=TEST&democurrency=USD

The reelsoft.net host is operated by Gametech — it's their public sandbox environment, not a third party. Replace <gamecode> with the value we issue. Currency, language, and operator are simulated.

Going to production

See Go-live checklist.

On this page