---
title: "Retrieve balances"
method: GET
path: "/v1/accounts/balances"
tags: ["Accounts"]
---

# Retrieve balances

`GET /v1/accounts/balances`

Return organization balance buckets by currency, including available, locked, and pending amounts, plus a consolidated USD total.

## Response `200`

Success - Account balances retrieved

- AccountBalanceResponse — Organization balance snapshot across currencies, including spendable and in-flight amounts.
  - `account_id` string, required — Organization ID the returned balances belong to.
  - `balances` object[], required — One balance object per currency bucket.
    - `currency` string, required — Currency code for this bucket (ISO 4217 or configured crypto code).
    - `available_balance` string, required — Amount currently available for new operations in this currency.
    - `pending_balance` string, required — In-flight amount not yet available for spending.
  - `total_balance_usd` string, required — Aggregate of available and pending balances converted to USD.
  - `pending_settlements_by_day` object[] — Upcoming settlements grouped by day. Empty when no settlements are pending. Each entry describes settlements expected to become available on a given date.

## Other responses

- `400` — Bad Request - Validation errors or invalid request format. Check the `details` object for field-specific validation errors. Common causes: missing required fields, invalid data types, values outside allowed ranges, or invalid formats.
- `401` — Unauthorized - Invalid, missing, or expired API key. Verify your API key is correctly formatted and included in the Authorization header as `Bearer sk_sandbox_...` or `Bearer sk_live_...`. Check that your key hasn't been revoked.
- `403` — Forbidden - API key does not have permission for the requested resource. Verify you're using the correct organization's API key and that you're not trying to access another organization's data.
- `404` — Not Found - The requested resource does not exist. Verify the resource ID is correct and that it belongs to your organization.
- `429` — Too Many Requests - Rate limit exceeded. Standard tier allows 100 requests per minute per API key. Wait a few seconds before retrying. Check X-RateLimit-Reset header for when the window resets.
- `500` — Internal Server Error - An unexpected error occurred while processing the request. Retry with exponential backoff. If the issue persists, contact support with your request context.

---

[API](https://skmtc.dev/bachs/apis/bachs-api.md) · [All operations](https://skmtc.dev/bachs/apis/bachs-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bachs/bachs-api/revisions/f29efa8a22df/schema)
