Plan quota and current usage
GEThttps://api.evora.lol/api/developer-api/quota
Requires scopeapps:read
Returns quota, usage, limits (apps, clients, requests per day and per minute) and subscription (expiry, days remaining, grace period). Poll this instead of inferring limits from a 402 or 429.
Responses
200Quota status.
json
{ "quota": { "maxApps": 10, "maxClientsPerApp": 5000, "requestsPerMinute": 120, "planTier": "platinum" }, "usage": { "appsCount": 3, "totalClients": 412, "requestsToday": 8123, "requestsThisMinute": 4 }, "limits": { "apps": { "current": 3, "max": 10, "unlimited": false, "percentage": 30 } }, "subscription": { "expiresAt": "2027-01-01T00:00:00.000Z", "daysRemaining": 148, "inGracePeriod": false, "expired": false } }
401Missing, malformed, revoked or expired API key.
json
{ "error": "Invalid or expired API key" }
403Key lacks the required scope, or the resource belongs to another tenant.
json
{ "error": "API key missing required scope: users:write" }
Base URL https://api.evora.lol/api/developer-api · full spec at developer-api.yaml · back to the docs