Endpoint
Authentication
Requiresusage:read scope.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get summarized usage metrics for the authenticated user
GET https://api.documind.cloud/api/v1/usage/summary
usage:read scope.
{
"user_id": "user-id",
"total_extractions": 450,
"total_tokens": 250000,
"total_api_calls": 1250,
"current_storage_bytes": 104857600,
"quota_exceeded_count": 0
}
response = requests.get(
"https://api.documind.cloud/api/v1/usage/summary",
headers={"X-API-Key": API_KEY}
)
summary = response.json()
Was this page helpful?