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

# GET /api/sessions/status

> Returns the number of registrations attributed to the requesting IP address and the global total, used to surface rate-limit headroom to clients.

Returns registration counts for the requesting IP address and globally. IP is extracted from the `CF-Connecting-IP` header.

## Response (200)

```json theme={null}
{
  "ip_registrations": 1,
  "ip_limit": 3,
  "total_registrations": 42
}
```

`ip_limit` is always `3` (the `MAX_REGISTRATIONS_PER_IP` constant). See [Rate Limits](/api-reference/rate-limits).
