Skip to content

Account Deposit

This endpoint allows you to add funds to a player’s account. Ensure you provide a unique transaction ID for each deposit request.


fetch('https://API-PLATFORM/account-deposit', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Api-Id': 'YOUR_SECRET_TOKEN',
'Api-Key': 'YOUR_SECRET_TOKEN'
},
body: JSON.stringify({
user_id: '',
currency: 'KRW',
transaction_id: '',
amount: 1
})
})
Terminal window
headers
POST /account_deposit
Content-Type: application/json
api-id: your-agent-id
api-key: your-secret-key
body
{
"user_id": "testuser",
"amount": 100,
"currency": "USD"
}
{
"code": 0,
"transaction_id": "txn_1234567890"
}

📌
For a comprehensive guide on how this works, please refer to the Common and Transfer Introduction or Seamless Introduction sections within the Introduction page.