---
title: "Get Account Balance"
method: GET
path: "/account/{id}/balance"
tags: ["Accounts"]
---

# Get Account Balance

`GET /account/{id}/balance`

Returns the balance, pending fees, net available balance, currency, and account status
for the authenticated user's account by ID.

## Path parameters

- `id` string, uuid, required

## Response `200`

Account balance

- object
  - `id` string, uuid
  - `balance` number — Account ledger balance rounded to 2 decimals
  - `currency` string
  - `pendingFees` number — Fees accrued but not yet collected, rounded to 2 decimals
  - `netBalance` number — Available balance after pending fees (balance minus pending fees), rounded to 2 decimals
  - `status` 'Operativa' | 'Bloqueada' | 'Cerrada' — Account lifecycle status

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/hg/apis/hg-cash-api.md) · [All operations](https://skmtc.net/hg/apis/hg-cash-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hg/hg-cash-api/revisions/0d337f48a0b9/schema)
