https://api.veriko.mx/v1/usage/heatmapValidation heatmap by day and hour
How-to guide →Aggregates the user's validations by day of week and hour of day over the last N days (max 90). Returns only combinations with at least one validation (sparse buckets); the client densifies into a 7×24 grid. day_of_week: 0 = Sunday, 6 = Saturday. hour_of_day: 0–23 server time.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
days | query | integer | optional | Number of days to include in the heatmap. Default: 30 |
curl -X GET 'https://api.veriko.mx/v1/usage/heatmap' \
-H 'Authorization: Bearer veriko_••••'Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Field | Type | Description |
|---|---|---|
data | object | Main response payload. Shape varies by endpoint (object, array, or JSON:API envelope with |
type | string | JSON:API discriminator. Always usage_heatmap |
attributes | object | Usage density by (day-of-week, hour-of-day) over the queried window. |
days | integer | Heatmap window in days (typically 30 or 90). e.g.30 |
max_count | integer | Maximum 48 |
buckets | array | Heatmap cells; each entry is a (day_of_week, hour_of_day) combination with its count. |
meta | object | Response metadata including API version, route prefix, unique request identifier, and the server timestamp in UTC. |
version | string | API version that processed the request. e.g.1.47.0 |
api_version | string | API route prefix version (e.g. v1 |
request_id | string | Unique request identifier (hex). e.g.a1b2c3d4e5f6 |
datetime | object | Companion descriptor present in every response's meta block (and in outgoing webhook payloads). Lets clients assert the timezone contract without re-reading the spec. e.g.{"timezone":"UTC","format":"ISO 8601"} |
timezone* | string | Always UTC |
format* | string | Always ISO 8601 |
links | object | Pagination or related links, present only when the endpoint returns a paginated collection. |
| Status | Class | Description | Body |
|---|---|---|---|
| 200 | 2xx | Sparse heatmap buckets with count per day×hour combination. | GetUsageHeatmapResponse |
| 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
|