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

# Get Usage Summary

> Get summarized usage metrics for the authenticated user

## Endpoint

```
GET https://api.documind.cloud/api/v1/usage/summary
```

## Authentication

Requires `usage:read` scope.

## Response

```json theme={null}
{
  "user_id": "user-id",
  "total_extractions": 450,
  "total_tokens": 250000,
  "total_api_calls": 1250,
  "current_storage_bytes": 104857600,
  "quota_exceeded_count": 0
}
```

## Example

```python theme={null}
response = requests.get(
    "https://api.documind.cloud/api/v1/usage/summary",
    headers={"X-API-Key": API_KEY}
)

summary = response.json()
```
