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

# Get Active Tiers

> Get all active rate limit tiers

## Authentication

Supports both Firebase and API Key authentication.

### Example Request

```bash theme={null}
curl https://api.sari-platform.com/api/rate-limits/tiers/active/all \
  -H "Authorization: Bearer <token>"
```

## Response

Returns only active tier configurations.

```json theme={null}
[
  {
    "tier": "client",
    "allowed_limit": 1000,
    "window_seconds": 3600,
    "is_active": true
  }
]
```

## Errors

| Status | Description            |
| ------ | ---------------------- |
| 401    | Invalid authentication |
