Get workspace analytics
Plan: Business or higher
Returns workspace-wide analytics time series aggregated across the workspace's projects. Not paginated: the response always covers the full requested window and cursor/limit parameters are not supported — narrow the date range or use daily granularity to reduce response size.
Path parameters
Workspace ID
Workspace ID
Query parameters
Start date in RFC 3339 format (e.g. 2026-07-01T00:00:00Z). Required.
Start date in RFC 3339 format (e.g. 2026-07-01T00:00:00Z). Required.
End date in RFC 3339 format (e.g. 2026-07-08T00:00:00Z). Required.
End date in RFC 3339 format (e.g. 2026-07-08T00:00:00Z). Required.
Deprecated alias for start_date.
Deprecated alias for start_date.
Deprecated alias for end_date.
Deprecated alias for end_date.
Time bucket size: hourly or daily (default: daily)
Time bucket size: hourly or daily (default: daily)
Response
OK
Example response
{
"timeSeries": {
"bounceRate": {
"data": [
{
"date": "2026-01-15 00:00:00",
"value": 1280
}
],
"label": "visitors",
"total": 1280
},
"pageviews": {
"data": [
{
"date": "2026-01-15 00:00:00",
"value": 1280
}
],
"label": "visitors",
"total": 1280
},
"pageviewsPerVisit": {
"data": [
{
"date": "2026-01-15 00:00:00",
"value": 1280
}
],
"label": "visitors",
"total": 1280
},
"sessionDuration": {
"data": [
{
"date": "2026-01-15 00:00:00",
"value": 1280
}
],
"label": "visitors",
"total": 1280
},
"visitors": {
"data": [
{
"date": "2026-01-15 00:00:00",
"value": 1280
}
],
"label": "visitors",
"total": 1280
}
}
}