Transactions
Wallet Balance
Read the current wallet balance and reserved amount.
Modified at Apr 28, 2026, 05:38 AM UTC
GET/api/wallet/snapwallet.balance.read
Returns the current available balance and reserved amount for the authenticated account.
Request
curl "https://cekceir.online/api/wallet/snap" \
-H "Authorization: Bearer <api_key>" \Request Fields
| Field | Type | Required | Description |
|---|---|---|---|
| Authorization | header string | Yes | Bearer token header in the format Bearer <api_key>. |
Success Response
{ "balance": 98500, "reserved": 0, "wallet_id": 77}Response Fields
| Field | Type | Required | Description |
|---|---|---|---|
| balance | number | Yes | Available wallet balance. |
| reserved | number | Yes | Balance currently held for pending actions. |
| wallet_id | number | Yes | Wallet ID. |