Website Accounts
Create accounts for each website, add game credentials, and integrate via API key.
Create New Account
Loading accounts...
👤
No accounts yet
Create your first account above to get started.
Integration Guide
Each account gets an API key. Use it to call the execute endpoint from your website:
POST http://209.126.77.226:3006/api/execute
Content-Type: application/json
X-API-Key: <your-account-api-key>
{
"game": "juwa777",
"action": "recharge",
"player": "testplayer01",
"amount": 10
}
const response = await fetch('http://209.126.77.226:3006/api/execute', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'YOUR_API_KEY'
},
body: JSON.stringify({
game: 'juwa777',
action: 'recharge', // create | recharge | redeem | reset_password | check_balance
player: 'testplayer01',
amount: 10 // required for recharge/redeem
// password: 'Pass123' // required for create/reset_password
})
});
const data = await response.json();
// { success: true, data: { ... }, duration_ms: 342 }
Available actions:
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 format:
// Success
{ "success": true, "data": { "balance": 50.00 }, "duration_ms": 342 }
// Error
{ "success": false, "error": "Player 'xyz' not found", "duration_ms": 120 }
How it works:
- Create an account above (one per website)
- Add your game agent credentials for each game you want
- Copy the API key and use it in your website's backend
- Each account uses its own credentials — no conflicts between websites