# Get Account

`GET /v1/account`

Read your balance and account status.

Base URL: `https://api.spicyapi.com`

## Authorizations

- `Authorization` (string, header, required): Bearer authentication header of the form `Bearer <token>`, where `<token>` is your SpicyAPI key (`sk-spicy-…`). Create one in the dashboard under API Keys.

## Request

```bash
curl --request GET \
  --url https://api.spicyapi.com/v1/account \
  --header 'Authorization: Bearer $SPICYAPI_KEY'
```

## Response: 200 application/json

Successful Response

- `email` (string, required): The account this key belongs to.
- `balance_usd` (number, required): Remaining balance in US dollars.

```json
{
  "email": "you@example.com",
  "balance_usd": 42.75
}
```
