Billing / Usage
You can query your key's quota and usage programmatically. All endpoints are GET and authenticated with an API key.
Subscription / quota
GET/v1/dashboard/billing/subscription
bash
curl https://app.qevron.ai/v1/dashboard/billing/subscription \
-H "Authorization: Bearer $QEVRON_API_KEY"Returns your group's total and remaining quota.
Total usage
GET/v1/dashboard/billing/usage
bash
curl https://app.qevron.ai/v1/dashboard/billing/usage \
-H "Authorization: Bearer $QEVRON_API_KEY"Response
json
{ "total_usage": 1234.56 }total_usage represents your total spend.
Quota
GET/v1/dashboard/billing/quota
bash
curl https://app.qevron.ai/v1/dashboard/billing/quota \
-H "Authorization: Bearer $QEVRON_API_KEY"Returns the group's quota structure.
TIP
For instant usage, also look at the usage field in each response and the rate-limit headers (see API Keys & Quota).