Skip to content

sidebar: order: 30

GET /api/quantis/v2/me/quota/

Returns your current API quota status for the billing period. This endpoint is free — calling it does not count against your monthly quota.

MethodGET
URLhttps://app.vzla.io/api/quantis/v2/me/quota/
AuthenticationAuthorization: Bearer vzlaio_...
ParametersNone

Request

Terminal window
curl --request GET \
--url 'https://app.vzla.io/api/quantis/v2/me/quota/' \
--header 'Authorization: Bearer vzlaio_YOUR_TOKEN_HERE'

sidebar: order: 30

Response

The quota response is a flat object — there is no data/meta envelope.

FieldTypeDescription
subscriptionstringYour current plan name, e.g. "Free"
monthly_limitintegerYour plan’s monthly request limit
current_usageintegerRequests made this calendar month
remainingintegerRequests remaining before quota is exhausted
usage_percentagenumbercurrent_usage / monthly_limit × 100
status_levelstring"normal", "warning", or "critical"
is_activebooleanWhether your token is active
has_quotabooleanWhether your plan has a quota limit
reset_datestring (ISO 8601 datetime)When the current billing period started
next_resetstring (ISO 8601 datetime)When your counter resets — always the 1st of next month

sidebar: order: 30

Response headers

HeaderDescription
X-API-Version2.0
X-Quota-LimitYour monthly request limit
X-Quota-RemainingRequests remaining this month
X-Quota-ResetISO 8601 timestamp of next quota reset
X-Request-IDUUID for this request

sidebar: order: 30

Example response

{
"subscription": "Free",
"monthly_limit": 1000,
"current_usage": 27,
"remaining": 973,
"usage_percentage": 2.7,
"status_level": "normal",
"is_active": true,
"has_quota": true,
"reset_date": "2026-05-01T00:00:00Z",
"next_reset": "2026-06-01T00:00:00Z"
}

sidebar: order: 30

HTTP status codes

CodeMeaning
200 OKSuccess.
401 UnauthorizedMissing or invalid token.
405 Method Not AllowedOnly GET is supported.
500 Internal Server ErrorServer error. Retry after a short delay.

401 — no Authorization header

{
"error": {
"code": "auth_missing",
"message": "Authentication credentials were not provided"
}
}

401 — invalid token

{
"error": {
"code": "auth_token_unknown",
"message": "Invalid token format"
}
}
Complete documentation as plain text for AI tools (llms.txt)