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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.firebolt.io/feedback

```json
{
  "path": "/reference-sql/information-schema/storage-billing",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

> Use this reference to learn about the metadata available about storage billing using the information schema.

# Storage Billing

You can use the `information_schema.storage_billing` view to see daily billing information for storage in all the accounts across all the regions in organization.

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT
  *
FROM
  information_schema.storage_billing;
```

## Columns in information\_schema.storage\_billing

Each row has the following columns.

| Column Name               | Data Type | Description                                          |
| :------------------------ | :-------- | :--------------------------------------------------- |
| account\_name             | TEXT      | Account for which the storage is billed              |
| region                    | TEXT      | Region where the data is stored                      |
| usage\_date               | DATE      | Date for which the usage is reported                 |
| consumed\_gib\_per\_month | NUMERIC   | Average amount of data stored over given date        |
| billed\_cost              | NUMERIC   | The cost for the storage consumed for the given date |
| is\_credit                | BOOLEAN   | Indicates whether costs were used as credit          |

Each row represents billing data for a given single day.

### Relationship Between consumed\_gib\_per\_month and billed\_cost

The billed\_cost is calculated using the formula:

`billed_cost = consumed_gib_per_month × gib_per_month_regional_price`

Where `gib_per_month_regional_price` is the storage price per GiB in the region where the data is stored, see [
Data storage pricing](/overview/billing#data-storage-pricing).

Example:

Consider the following row from `information_schema.storage_billing`:

| account\_name | region    | usage\_date | consumed\_gib\_per\_month | billed\_cost | is\_credit |
| :------------ | --------- | ----------- | ------------------------- | ------------ | ---------- |
| test          | us-east-1 | 2025-06-16  | 770.533035647             | 20.36946218  | false      |

Then the customer is charged **\$20.36946218** for consuming **770.533035647 GiB/Month** of data on **June 16th** in account `test`.

`billed_cost = 770.533035647 × $27.07 / 1024 = $20.36946218`

<Note>
  For detailed information about `consumed_gib_per_month` usage and calculations, see [Understanding Storage Billing](/guides/managing-your-organization/billing#understanding-storage-billing).
</Note>
