https://api.veriko.mx/v1/usage/summaryCurrent monthly quota summary
How-to guide →Returns the authenticated user's monthly quota:
- plan limit
- validations consumed
- remaining count
- percent used
The tone field (ok, warn, danger, none) signals the alert level by consumption (green < 70 %, amber 70–89 %, red ≥ 90 %, neutral when the plan has no limit). The limit matches the active plan returned by GET /v1/billing/subscription; the reset timestamp (resets_at) matches current_period_end from that subscription. For rate limits (not quota) see GET /v1/usage/limits.
curl -X GET 'https://api.veriko.mx/v1/usage/summary' \
-H 'Authorization: Bearer veriko_••••'Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Field | Type | Description |
|---|---|---|
plan_slug* | string | Account plan in force, the one that sets the period limit. e.g.free |
plan_name | string | Human-readable plan name. e.g.Pro |
limit* | integer | Validations included in the plan per calendar month. e.g.5000 |
used* | integer | Validations consumed in the current month. e.g.1284 |
remaining* | integer | Remaining validations ( 3716 |
used_percent* | number | Percentage consumed (0-100, rounded to 2 decimals). e.g.70.5 |
tone* | string |
ok |
resets_at* | string (date-time) | ISO 8601 timestamp in UTC with explicit 2026-05-01T05:14:38Z |
next_reset_at* | string (date-time) | ISO 8601 timestamp in UTC with explicit 2026-05-01T05:14:38Z |
| Status | Class | Description | Body |
|---|---|---|---|
| 200 | 2xx | Quota snapshot for the current month with percent utilized and a pre-classified tone indicator. | No body |
| 401 | 4xx | Authentication is required or the provided credentials are invalid. | ErrorResponse |
| 403 | 4xx | Insufficient permissions. | ErrorResponse |
| Status | Code | Example |
|---|---|---|
| 401 | unauthorized | Invalid or missing authentication credentials. Envelope
|
| 403 | forbidden | You do not have permission to access this resource. Envelope
|