--- title: 'Grafana' description: 'Manage dashboards, data sources, and alerts with the Grafana HTTP API.' --- # Grafana Manage dashboards, data sources, and alerts with the Grafana HTTP API. | Detail | Value | |---|---| | Category | Monitoring | | Base URL | `https://grafana.example.com/api` | | Authentication | Bearer Token | | Endpoints | 8 | | Connector key | `grafana` | ## Using Grafana in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Grafana** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [POST /dashboards/db](./post_dashboards_db_monitoring_createorupdatedashboard) | Create or update dashboard | | [GET /dashboards/uid/{uid}](./get_dashboards_uid_uid_monitoring_getdashboardbyuid) | Get dashboard by UID | | [GET /search](./get_search_monitoring_searchdashboards) | Search dashboards | | [GET /datasources](./get_datasources_monitoring_listdatasources) | List data sources | | [POST /datasources](./post_datasources_monitoring_createdatasource) | Create a data source | | [GET /alerts](./get_alerts_monitoring_listalerts) | List alerts | | [GET /folders](./get_folders_monitoring_listfolders) | List folders | | [GET /org](./get_org_monitoring_getcurrentorg) | Get current org | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.