> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tokenlab.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Lấy số dư tổ chức

> Trả về các tổng số dư hiện tại của tổ chức cho management token.

## Tổng Quan

Endpoint này trả về các tổng số dư hiện tại của tổ chức gắn với management token. Nó dùng cùng nguồn sự thật số dư tổ chức như billing và settlement.

## Ghi Chú

* Các trường tiền tệ được trả về bằng USD. Dùng `balance`, `total_recharge` và `total_used` để hiển thị; dùng `balance_decimal`, `total_recharge_decimal` và `total_used_decimal` để đối soát chính xác.

## Ví Dụ

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.tokenlab.sh/v1/management/balance" \
    -H "Authorization: Bearer mt-your-management-token"
  ```
</RequestExample>

## Yêu Cầu / Phản Hồi

Sử dụng bảng điều khiển OpenAPI tương tác ở trên để xem schema chính xác.

## Ví dụ phản hồi

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "object": "organization_balance",
    "organization_id": "org_123",
    "balance": 42.5,
    "balance_decimal": "42.50",
    "total_recharge": 100,
    "total_recharge_decimal": "100",
    "total_used": 57.5,
    "total_used_decimal": "57.50"
  }
  ```
</ResponseExample>

## Trường quan trọng

<ResponseField name="object" type="string">Luôn là `organization_balance`.</ResponseField>
<ResponseField name="organization_id" type="string">Tổ chức gắn với management token hiện tại.</ResponseField>
<ResponseField name="balance" type="number">Số dư hiện tại của tổ chức bằng USD dưới dạng JSON number để hiển thị.</ResponseField>
<ResponseField name="balance_decimal" type="string">Số dư hiện tại chính xác của tổ chức bằng USD dưới dạng chuỗi thập phân để đối soát.</ResponseField>
<ResponseField name="total_recharge" type="number">Tổng nạp thành công của tổ chức bằng USD dưới dạng JSON number để hiển thị.</ResponseField>
<ResponseField name="total_recharge_decimal" type="string">Tổng nạp thành công chính xác của tổ chức bằng USD dưới dạng chuỗi thập phân để đối soát.</ResponseField>
<ResponseField name="total_used" type="number">Chi tiêu sử dụng tích lũy của tổ chức bằng USD dưới dạng JSON number để hiển thị.</ResponseField>
<ResponseField name="total_used_decimal" type="string">Chi tiêu sử dụng tích lũy chính xác của tổ chức bằng USD dưới dạng chuỗi thập phân để đối soát.</ResponseField>
