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

# Get Wallet

> Get your wallet balance and usage totals

Returns your team's current wallet balance, total amount spent, and total amount topped up. The team is resolved from your API key.

### Headers

<ParamField header="X-API-Key" type="string" required>
  Your API key. Create one from the [dashboard](https://platform.cuttr.com/dashboard/api-platform).
</ParamField>

### Response

<ResponseField name="balance_cents" type="integer">
  Current wallet balance in cents. For example, `2500` = \$25.00.
</ResponseField>

<ResponseField name="total_spent_cents" type="integer">
  Cumulative amount spent on API calls, in cents.
</ResponseField>

<ResponseField name="total_topped_up_cents" type="integer">
  Cumulative amount added to the wallet, in cents.
</ResponseField>

<ResponseField name="active" type="boolean">
  Whether the billing account is active.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "balance_cents": 2500,
    "total_spent_cents": 7500,
    "total_topped_up_cents": 10000,
    "active": true
  }
  ```
</ResponseExample>
