One simple API to validate Game IDs, E-Wallets, Bank Accounts, and Bill Numbers. Fast, reliable, and developer-friendly.
Ask admin to create an account & subscription.
Get your x-api-key and start coding.
Include this header in every request:
x-api-key: YOUR_API_KEYValidate game user ID (and zone if required).
{
"user_id": "12345678",
"zone": "1234 (Optional/Dependent on game)"
}{
"success": true,
"nickname": "ProPlayer123",
"cached": false
}Validate e-wallet number. Codes: gopay, dana, ovo, etc.
{
"phone_number": "08123456789",
"user_id": "ref_id_123"
}{
"success": true,
"account_name": "John Doe",
"cached": true
}Validate bank account number. Codes: bca, bri, mandiri, etc.
{
"bank_code": "bca",
"account_number": "1234567890",
"user_id": "ref_id_123"
}{
"success": true,
"account_name": "JANE DOE",
"cached": false
}Validate bill customer ID (PLN, PDAM, BPJS, etc).
{
"bill_type": "pln",
"customer_id": "54321234567",
"user_id": "ref_id_123"
}{
"success": true,
"account_name": "JOHN SMITH",
"cached": false
}