v1
latestOpenAPI 3.1.02026-07-22152755.8 KBdashboards
List dashboards
List dashboards accessible to the authenticated user. Always pass project_id — without it, all dashboards across every project in your organisation are returned, which can be a large result set.
Dashboard workflow:
- POST /dashboards/dashboards — create a dashboard with a name, project, and date-range filters
- POST /dashboards/widgets — add widgets (line, bar, pie, or stat charts)
- GET /dashboards/widgets/{id}/data — fetch chart data (requires a timestamp filter)
- POST /dashboards/dashboards/{id}/duplicate — clone an existing dashboard as a starting point
get/dashboards/dashboards/
Query parameters
pageinteger
A page number within the paginated result set.
page_sizeinteger
Number of results to return per page.
project_idinteger
Filter by project ID. Strongly recommended — omitting returns all dashboards across every project.
Response
Example response
{
"count": 123,
"next": "https://api.cekura.ai/example/v1/example-external/?page=4",
"previous": "https://api.cekura.ai/example/v1/example-external/?page=3",
"results": [
{
"filters": {
"field": "success",
"op": "eq",
"value": true
}
}
]
}