> For the complete documentation index, see [llms.txt](https://docs.nebulablock.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nebulablock.com/overview/platform_api/get_credit_balance.md).

# Billing

Retrieve the current credit balance for your account.

## HTTP Request

`GET` `{API_URL}/users/credits`

## Response Attributes

#### data `dict`

Returns the `data` object, containing the user credit balance in the field `available_balance`.

#### status `string`

Indicates the result of the request to get your credit balance. success signifies success, while failed indicates an error.

#### message `string`

A description of the status of the request.

## Example

#### Request

```bash
curl -X GET '{API_URL}/users/credits'
-H 'Authorization: Bearer {TOKEN/KEY}'
```

#### Response

```json
{
    "data": {
        "available_balance": "1228.55600"
    },
    "message": "User credit balance successfully retrieved",
    "status": "success"
}
```
