From 2dc60fad915c5fd4ed99620fe40bd720ab363716 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Wed, 4 Feb 2026 00:13:07 +0100 Subject: [PATCH] docs(redash): improve api section --- knowledge base/redash.md | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/knowledge base/redash.md b/knowledge base/redash.md index b49f4fe..77dfe94 100644 --- a/knowledge base/redash.md +++ b/knowledge base/redash.md @@ -1,11 +1,6 @@ # Redash -> TODO - -Intro - - +Dashboard visualization tool. 1. [TL;DR](#tldr) 1. [Authentication](#authentication) @@ -18,6 +13,8 @@ Intro ## TL;DR +Allows querying multiple _data sources_ at once. + Settings are read by `redash.settings` from environment variables.
Most installations set them in `/opt/redash/.env`. Official container images require that `.env` file in the root directory.
@@ -192,7 +189,25 @@ Refer [LDAP/AD Authentication]. Refer [API]. -Prefer acting on them via [getredash/redash-toolbelt]. +Prefer acting on them using [getredash/redash-toolbelt]. + +
+ Configuration + +The `/api/config` endpoint does **not** require authentication.
+The `/api/session` endpoint **does** require it. + +```plaintext +GET /api/config +GET /api/session +``` + +```sh +curl --url 'https://redash.example.org/api/config' +curl --url 'https://redash.example.org/api/session' --header 'Authorization: Key AA…99' +``` + +
Data sources