v1.0
OpenAPI 3.0.2
MapTiler Service API
Client Libraries
MapTiler Service API
classifies datasets
group ID filter, mandatory for CSV format
response media type
period_not_found: Selected time period does not exist (for example last_billing_period of new account)account_over_limit: Account currently has too many entities (api_keys or service_credentials) to be queried.response_too_large: There were too much data in the result (could be historical).curl 'https://service.maptiler.com/v1/analytics/api_usage/timeline?period=current_billing_period&classifier=services'
{
"since": "2026-08-31",
"until": "2026-08-31",
"datasets": [
{
"group_id": "request",
"item_id": "string",
"data": [
{
"date": "2026-08-31",
"value": 1
}
],
"estimated_data": {
"date": "2026-08-31",
"value": 1
}
}
],
"legend": [
{
"item_id": "string",
"label": "string",
"description": null
}
]
}Usage analytics timeline response, further description is within each media type schema.
classifies datasets
group ID filter, mandatory for CSV format
response media type
number of top items within response group
period_not_found: Selected time period does not exist (for example last_billing_period of new account)curl 'https://service.maptiler.com/v1/analytics/api_usage/top?period=current_billing_period&classifier=services'
{
"since": "2026-08-31",
"until": "2026-08-31",
"datasets": [
{
"group_id": "request",
"data": [
{
"item_id": "string",
"value": 1
}
]
}
],
"legend": [
{
"item_id": "string",
"label": "string",
"description": null
}
]
}Usage analytics top response, further description is within each media type schema.