cURL
curl --request POST \ --url https://api.example.com/v1/check-balance
Check your current deposit balance
{ "api_key": "your-api-key", "sign": "MD5(api_key + api_secret + balance)" }
sign = MD5(api_key + api_secret + "balance")
{ "success": true, "data": { "balance": 1500000, "currency": "IDR", "tier": "gold", "name": "Toko Game Store" }, "message": "OK" }
balance
currency
IDR
tier
name
curl -X POST https://api.isiaja.id/v1/check-balance \ -H "Content-Type: application/json" \ -d '{ "api_key": "iak-12345", "sign": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4" }'