Documentation Index
Fetch the complete documentation index at: https://mind-e.co/docs/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authentication
Required.
Query parameters
Set to "true" to include usage statistics by feature and agent.
Response
Total credits used all-time
ISO 8601 timestamp of last update
Included only when includeStats=true.
Credits used in current billing period
Breakdown by feature (chat, tts, etc.)
Example
curl "https://api.mind-e.co/credits?includeStats=true" \
-H "Authorization: Bearer sk_live_your_key_here"
Response
{
"success": true,
"credits": {
"balance": 8450,
"lifetimeUsed": 1550,
"updatedAt": "2026-02-28T15:00:00Z"
},
"stats": {
"totalUsed": 1550,
"periodUsed": 350,
"byFeature": { "chat": 1200, "tts": 250, "scenario_trigger": 100 },
"byAgent": { "agent-1": 900, "agent-2": 650 }
}
}