---
title: "Get Credit Balance"
method: GET
path: "/v1/organizations/billing/balance"
tags: ["Organization Billing"]
---

# Get Credit Balance

`GET /v1/organizations/billing/balance`

Get current credit balance and tier information.

Returns the organization's credit balance, current tier, and usage statistics.
Useful for displaying billing status in dashboards.

**Requirements:**
- Read permission

**Example:**
```python
response = await client.get("/v1/organizations/billing/balance")
print(f"Balance: {response['credit_balance']} credits")
print(f"Tier: {response['account_tier']}")
```

## Response `200`

Successful Response

- CreditBalanceResponse — Response with current credit balance and tier information.
  - `organization_id` string, required — Organization identifier
  - `credit_balance` integer, required — Current credit balance. For FREE tier without auto-billing, this is remaining free tier credits. For auto-billing accounts, this shows current month usage (negative indicates consumption).
  - `account_tier` string, required — Current account tier: free, pro, team, enterprise
  - `next_tier` string, nullable — Next available tier or null if at max tier
  - `credits_until_next_tier` integer, nullable — Credits needed to reach next tier (null if at max tier or N/A)
  - `estimated_days_remaining` integer, nullable — Estimated days until credits depleted based on 7-day burn rate. Null if no usage history or unlimited (auto-billing enabled).
  - `daily_burn_rate` number — Average credits consumed per day (7-day rolling average)

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

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