---
title: "Get credit balance"
method: GET
path: "/api/v1/account/balance"
tags: ["Account"]
---

# Get credit balance

`GET /api/v1/account/balance`

Returns the API key owner's current balance. `frozen` is credits held for in-flight tasks.

## Response `200`

Balance snapshot

- BalanceResponse
  - `code` 200, required
  - `data` BalanceData, required
    - `available` integer, required — Credits that can be spent on new tasks.
    - `frozen` integer, required — Credits held for in-flight tasks (not yet settled or refunded).
    - `total` integer, required — available + frozen.

## Other responses

- `401` — Missing or invalid API key.
- `429` — Rate limit exceeded. Default quota is 120 requests per 60 seconds per API key.
- `500` — Unexpected server error. Retry only when the operation is known to be safe; task creation may have an ambiguous outcome until idempotency support is available.

## Changes

- **2026-08-24** `59314c3f36f7` — 3 info
  - added the required property `error_code` to the response with the `401` status
  - added the required property `error_code` to the response with the `429` status
  - added the required property `error_code` to the response with the `500` status
- **2026-08-06** `1c23fd441ed1` — 3 breaking, 5 info
  - removed the required property `available` from the response with the `200` status
  - removed the required property `frozen` from the response with the `200` status
  - removed the required property `total` from the response with the `200` status
  - added the non-success response with the status `429`
  - …4 more

[Change history](https://skmtc.dev/sunor/apis/sunor-api/changes/api/v1/account/balance/get.md)

---

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