List Dashboards
GEThttps://api.confident-ai.com/v1/dashboards
Lists dashboard overviews in your Confident AI project — metadata and widget counts only. Widget configurations are returned by the dashboard detail endpoint, and computed widget data by the query endpoints.
curl -X GET "https://api.confident-ai.com/v1/dashboards" \
-H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"{
"success": true,
"data": {
"dashboards": [
{
"id": "DASHBOARD-ID",
"name": "Production Overview",
"description": null,
"private": false,
"projectId": "PROJECT-ID",
"userId": null,
"widgetCount": 2,
"createdAt": "2024-01-01T00:00:00.000Z",
"updatedAt": "2024-01-01T00:00:00.000Z"
}
]
},
"deprecated": false
}Headers
CONFIDENT_API_KEYstringRequiredThe API key of your Confident AI project.
Response
The dashboard overviews in your project.
successbooleanIndicates if the request was successful.
dataobjectThe dashboards in your project.
Show 1 propertyHide 1 property
dashboardslist of objectsThe list of dashboard overviews.
Show 9 propertiesHide 9 properties
idstringThe unique id of the dashboard.
namestringThe dashboard's name.
descriptionstringAn optional description of the dashboard.
privatebooleanWhether the dashboard is private to its creator.
projectIdstringThe id of the project that owns the dashboard.
userIdstringThe id of the dashboard creator, when available.
widgetCountintegerThe number of widgets on the dashboard.
createdAtstringWhen the dashboard was created.
updatedAtstringWhen the dashboard was last updated.
deprecatedbooleanIndicates if this endpoint is deprecated.