cURL
Widgets
Bulk Widget Data
Fetch chart data for multiple widgets in one request — useful for refreshing a dashboard view in a single round-trip.
POST
cURL
Authorizations
API Key Authentication. It should be included in the header of each request.
Query Parameters
A page number within the paginated result set.
Number of results to return per page.
Body
List of widget IDs to get data for
Optional override filters for all widgets. Filter conditions to scope the data. See the Dashboards guide for supported fields, operators, and syntax.
Examples:
{
"field": "success",
"op": "eq",
"value": true
}{
"operator": "and",
"conditions": [
{
"field": "timestamp",
"op": "gte",
"value": "today-7d"
},
{
"field": "duration",
"op": "gte",
"value": 60
}
]
}