---
title: "Get User Accounts"
method: GET
path: "/accounts"
tags: ["Accounts"]
---

# Get User Accounts

`GET /accounts`

Returns the authenticated user's accounts, including ledger balance, pending fees,
net available balance (balance minus pending fees), and account status.

## Response `200`

List of accounts

- object
  - `data` object[]
    - `id` string, uuid
    - `name` string
    - `balance` number — Account ledger balance rounded to 2 decimals
    - `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
    - `currency` string
    - `number` string
    - `alias` string, nullable
    - `platform` object
      - `id` string, uuid
      - `name` string
    - `company` object, nullable — Company the account belongs to (optional)
      - `id` string, uuid
      - `name` string
  - `count` integer

## Other responses

- `401` — Unauthorized
- `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)
