API Security Status

Your API credentials are active and secure

HTTPS Enabled JWT Token Active Last Login: Loading...

Your API Credentials

Keep your API credentials secure and never share them publicly. These keys provide full access to your account.

API Prefix

Loading...

Your unique identifier for API requests

API Token

Loading...

Bearer token for API authentication

Secret Key

Loading...

Secret key for secure API operations

Expires

Never

Your credentials do not expire

API Endpoints

Use these endpoints to integrate with our gaming API

Game Launch URL

LAUNCH
https://launch.zynverse.cloud/HuidoVerse.php

Integration Example

POST

Configure Your Credentials

Example Request:
{
// In your GetGameUrl.php file, add these three values:

define('RESELLER_API_TOKEN', 'YOUR_API_TOKEN');      // Copy from above
define('RESELLER_SECRET_KEY', 'YOUR_SECRET_KEY');    // Copy from above
define('RESELLER_PREFIX', 'YOUR_API_PREFIX');        // Copy from above
}

Example Request:
{
// PHP Example - How to call the API
$ch = curl_init('$launchurl');

curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([
    'userId' => '12345',
    'gameCode' => 'game_code_here',
    'vendorCode' => 20,
    'userBalance' => 1000.00,  // User's balance in INR
    'language' => 0,
    'phonetype' => 0,
    'returnUrl' => 'https://yoursite.com'
]));

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Content-Type: application/json',
    'X-API-Token: YOUR_API_TOKEN',      // Required
    'X-Secret-Key: YOUR_SECRET_KEY'     // Required
]);

$response = curl_exec($ch);
$result = json_decode($response, true);

// Game URL will be in: $result['data']['url']
}

Place Bet

POST
https://launch.zynverse.cloud/v1/bet/place

Place a bet for a player

Example Request:
{
  "player_id": "player123",
  "game_id": "slot_mega_fortune",
  "amount": 10.00,
  "currency": "INR",
  "transaction_id": "txn_12345"
}

Settle Bet

POST
https://launch.zynverse.cloud/v1/bet/settle

Settle a bet with win amount

Example Request:
{
  "transaction_id": "txn_12345",
  "win_amount": 25.00,
  "status": "won"
}

Get Bet History

GET
https://launch.zynverse.cloud/v1/bets/history?player_id=player123&limit=50

Retrieve betting history for a player

Get Balance

GET
https://launch.zynverse.cloud/v1/balance?player_id=player123

Get current balance for a player

Webhook Configuration

Configure webhooks to receive real-time notifications

Your main callback endpoint for all game events
Your account currency
Allowed IP address for API requests (leave empty for any IP)
Current account status

Account Information

Account Created

Loading...

Last Login

Loading...

Current Balance

Loading...

GGR Percentage

Loading...

API Testing Tool

Test your API integration with our built-in testing tool

Test Results

Ready -
Click "Run Test" to see results...