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

# Get Balance

> Retrieve your remaining solves.

**GET** `/getBalance`

### Query Parameters

```
/getBalance?api_key=your-syllara-api-key
```

* `api_key` (string, **Required**): Your Syllara API key.

### Response Example

```json theme={null}
{
  "success": true,
  "api_key": "SYLLARA-BALANCE-XXXX",
  "solves_left": 420,
  "minutes_left": null
}
```

or for a time-based key:

```json theme={null}
{
  "success": true,
  "api_key": "SYLLARA-DAILY-YYYY",
  "solves_left": 0,
  "minutes_left": 1350
}
```

* `solves_left`: Number of solves remaining (for **Balance Keys**). Will be 0 for time-based keys.
* `minutes_left`: Number of minutes remaining until expiry (for **Daily/Hourly Keys**). Will be `null` for balance keys unless they also have an expiry set (not standard).
