Fetch paginated data for a chart
Resolves the chart config by ID, executes its query, applies filters and sorting, then returns a paginated raw-data response. The frontend is responsible for mapping this to an ECharts option.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Page number (1-based)
x >= 1Rows per page. When unset, the service falls back to chart.source.limit (operator-configured per chart, default 1000). Capped at 100_000.
1 <= x <= 100000Field name to filter on
Filter operator
eq, neq, gt, gte, lt, lte, in, not_in, contains, is_null, is_not_null Filter value
Field to sort by
asc or desc
asc, desc Response
Successful Response
Standard raw-data envelope returned to the frontend.
The frontend maps this to an ECharts option — the backend never builds chart library configs.
Shape
labels — column / field names (derived from first row keys) rows — one dict per data point or table row pagination — page metadata
bar, line, pie, donut, scatter, area, heatmap, table, stat, histogram Related topics
List chartsGet chart data (public access)Create a chartPartially update a chartGet a single chart