API Docs
Base URL:
https://game.mixotech-api.in/production/
mixotech 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.
V2: Transfer
Deposit on launch, withdraw on close. Simple integration.
Authentication
All requests must include your agency_uid (API Key). Use POST with application/json.
Important: Member accounts need prefix
hee4b2_ for Production.
V1: Seamless Wallet
POST
/v1/gameLaunch.php
| Field | Type | Required |
|---|---|---|
member_account |
string | Yes |
game_uid |
string | Yes |
home_url |
string | Yes |
V2: Transfer Wallet
JSON
{
"agency_uid": "your_api_key",
"member_account": "hee4b2_player123",
"game_uid": "demo_game_001",
"credit_amount": 100.0,
"home_url": "https://yourdomain.com"
}
Providers
PGPGSoft
SABASABA
JLJILI
JDBJDB
CQ9CQ9
WMWM
PPPP
SPRIBESpribe
EVOEvolution
Error Codes
| Code | Description |
|---|---|
| 10002 | Invalid API key |
| 10004 | Invalid JSON |
| 10008 | Game not found |
| 10015 | Insufficient balance |
| 10040 | IP not whitelisted |
Testing
bash
curl -X POST https://game.mixotech-api.in/production/v2/gameLaunch.php \
-H "Content-Type: application/json" \
-d '{
"agency_uid": "your_api_key",
"member_account": "hee4b2_test",
"game_uid": "demo_game_001",
"home_url": "https://yourdomain.com"
}'