CODEXBOSS - Premium Digital Marketplace

API Docs

Base URL:
https://game.codexboss-api.in/production/

CODEXBOSS provides two flexible integration models: V1 Seamless Wallet and V2 Transfer Wallet.

V1: Seamless

Balance stays on your side. Real-time callbacks for every bet/win transaction.

V2: Transfer

Deposit on launch, withdraw on session close. Simplest integration layout.

Authentication

All requests must include your agency_uid (API Key). Use POST with application/json payloads.

Your Sandbox API Credentials Active
cb_live_d04496c5a7f512e51119
Important: Member accounts need prefix hee4b2_ for Production environments.

V1: Seamless Wallet

POST /v1/gameLaunch.php

Request Parameters

Field Type Required
member_account string Yes
game_uid string Yes
home_url string Yes

V2: Transfer Wallet

Example JSON request payload for initial token generation and launch session initialization:

JSON
{
  "agency_uid": "cb_live_d04496c5a7f512e51119",
  "member_account": "hee4b2_player123",
  "game_uid": "demo_game_001",
  "credit_amount": 100.0,
  "home_url": "https://yourdomain.com"
}

Game Catalog

Integrate high-payout gaming categories directly using the following unique game_uid values:

Game Title Game Uid Category RTP Rate
Wingo 30s wingo_30s Color Trading 98.5%
Diuwin 1m diuwin_3m Lottery Games 97.8%
Tiranga 3m tiranga_5m Classic Lottery 99.1%
Premium Casino slots casino_slots Slots Casino 96.5%

Providers

Our gateway aggregates premium slots and live multipliers from global betting houses. The integration supports transparent RTP setting variables dynamically passed in authentication logs.

CodexGames
Proprietary Engine
Jili Clone API
Classic Slots
Evolution Lite
Card Rooms

Error Codes

Code Description
10002 Invalid API key
10004 Invalid JSON
10008 Game not found
10015 Insufficient balance
10040 IP not whitelisted

Testing

Quick test deployment script using standard curl parameters:

bash
curl -X POST https://game.codexboss-api.in/production/v2/gameLaunch.php \
  -H "Content-Type: application/json" \
  -d '{
    "agency_uid": "cb_live_d04496c5a7f512e51119",
    "member_account": "hee4b2_test",
    "game_uid": "demo_game_001",
    "home_url": "https://yourdomain.com"
  }'

Interactive API Sandbox

Test the dynamic backend API endpoints and inspect raw JSON outputs instantly.

Output Response Console
// Execute a query above to see raw JSON output...