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

# Get Organization Billing Information

> Retrieve the current billing details for an organization.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="org_id" type="string" required>
  The unique identifier of the organization.
</ParamField>

### Response

<ResponseField name="data" type="object">
  The billing details of the organization.
</ResponseField>

<ResponseField name="data.current_balance" type="number">
  The current account balance of the organization.
</ResponseField>

<ResponseField name="data.refill_amount" type="number | null">
  The amount to which the balance will be refilled, or `null` if refilling is not enabled.
</ResponseField>

<ResponseField name="data.refill_at" type="number | null">
  The threshold at which the account will be refilled, or `null` if refilling is not enabled.
</ResponseField>

<ResponseField name="errors" type="null">
  Always `null` on success.
</ResponseField>

<ResponseExample>
  ```json Response   theme={null}
  {
    "data": {
      "current_balance": 20.711,
      "refill_amount": null,
      "refill_at": null
    },
    "errors": null
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
