API Keys
Manage API keys for your websites. Each website gets its own key.
Create New API Key
Integration Guide
Use the API key in the X-API-Key header. All operations go through a single endpoint:
POST http://209.126.77.226:3006/api/execute
Content-Type: application/json
X-API-Key: <your-api-key>
{
"game": "juwa777",
"action": "recharge",
"player": "testplayer01",
"amount": 10
}
check_balance
— { game, action, player }
create
— { game, action, player, password }
recharge
— { game, action, player, amount }
redeem
— { game, action, player, amount }
reset_password
— { game, action, player, password }
Response:
// Success
{ "success": true, "data": { "balance": 50.00 }, "duration_ms": 342 }
// Error
{ "success": false, "error": "Player 'xyz' not found", "duration_ms": 120 }
Active Keys
Loading...