Fire Bankingdocs

Query account balance

GET /api/balance

Returns the gross, blocked, and net balance of the authenticated account.

Authentication

Requires a Bearer token in the Authorization header.

Response (200)

FieldTypeDescription
grossBalancenumberGross balance (total available + blocked)
blockedBalancenumberBlocked balance (reserved for pending operations)
netBalancenumberNet balance (available for use)
consultedAtstringQuery date and time (ISO 8601)
{
  "grossBalance": 48734.90,
  "blockedBalance": 0,
  "netBalance": 48734.90,
  "consultedAt": "2025-11-19T20:18:29.384Z"
}

Errors

StatusDescription
401Invalid, expired, or missing token

On this page