# Your balance and limits

`GET https://api.skylit.ai/v1/account`

API: Heatseeker.

The calling key's account: status, balance (credits and US dollars at
$0.001 per credit), whether usage is unlimited, and the limits that
apply. Free.

## Authentication

Send your Skylit API key as a bearer token: `Authorization: Bearer <key>`. No other header is accepted.

## Example request

```bash
curl "https://api.skylit.ai/v1/account" \
  -H "Authorization: Bearer $SKYLIT_API_KEY"
```

## Responses

### 200

Account.

Shape (placeholder values):

```json
{
  "data": {
    "customerId": "string",
    "status": "active",
    "apiEligible": false,
    "unlimited": false,
    "creditsBalance": 0,
    "balanceUsd": 0,
    "limits": {
      "requestsPerMinute": 0,
      "symbolsPerHeatmapCall": 0,
      "symbolsPerStream": 0,
      "historicalInFlight": 0,
      "activeKeys": 0,
      "streamMaxDurationMinutes": 0
    }
  }
}
```

### 401

Missing or invalid API key.

### 404

Unknown symbol, no data available, or none of the requested
`expirations` exist for the symbol (`code: expiration_not_found`).
