GET
/
api
/
v1
/
accounts
/
{account_id}
/
balance
Get Current Account Balance
curl --request GET \
  --url http://localhost:8080/api/v1/accounts/{account_id}/balance
{
  "available_balance": "1000.50",
  "currency": "<string>",
  "current_balance": "1000.50",
  "last_updated": "2023-11-07T05:31:56Z",
  "reserved_balance": "0.00"
}

Path Parameters

account_id
string<uuid>
required

Account UUID

Response

Account balance

available_balance
string
required
Example:

"1000.50"

currency
string
required
current_balance
string
required
Example:

"1000.50"

last_updated
string<date-time>
required
reserved_balance
string
required
Example:

"0.00"