Universal IdentityCheck API

One simple API to validate Game IDs, E-Wallets, Bank Accounts, and Bill Numbers. Fast, reliable, and developer-friendly.

How to Start

💬

1. Contact Us

Chat @apiatom on Telegram.

�

2. Register

Ask admin to create an account & subscription.

🚀

3. Integrate

Get your x-api-key and start coding.

API Documentation

Authentication

Include this header in every request:

x-api-key: YOUR_API_KEY

Check Game ID

POST /api/check/game/[game_code]

Validate game user ID (and zone if required).

Request Body
{
  "user_id": "12345678",
  "zone": "1234 (Optional/Dependent on game)"
}
Response
{
  "success": true,
  "nickname": "ProPlayer123",
  "cached": false
}

Check E-Wallet

POST /api/check/ewallet/[ewallet_code]

Validate e-wallet number. Codes: gopay, dana, ovo, etc.

Request Body
{
  "phone_number": "08123456789",
  "user_id": "ref_id_123"
}
Response
{
  "success": true,
  "account_name": "John Doe",
  "cached": true
}

Check Bank Account

POST /api/check/bank

Validate bank account number. Codes: bca, bri, mandiri, etc.

Request Body
{
  "bank_code": "bca",
  "account_number": "1234567890",
  "user_id": "ref_id_123"
}
Response
{
  "success": true,
  "account_name": "JANE DOE",
  "cached": false
}

Check Bill / PPOB

POST /api/check/bill

Validate bill customer ID (PLN, PDAM, BPJS, etc).

Request Body
{
  "bill_type": "pln",
  "customer_id": "54321234567",
  "user_id": "ref_id_123"
}
Response
{
  "success": true,
  "account_name": "JOHN SMITH",
  "cached": false
}