From 4a64a6f21f064115c557633b52679353193e6f56 Mon Sep 17 00:00:00 2001 From: Ivan Pusic <450140+ivpusic@users.noreply.github.com> Date: Thu, 16 Apr 2026 14:43:47 +0200 Subject: [PATCH] Added dashboard & visualization docs to readme --- README.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 42db65f..c305c4a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Dune CLI -A command-line interface for interacting with the [Dune](https://dune.com/) API. +A command-line interface for interacting with the [Dune](https://dune.com/) API — query data, manage visualizations, and build dashboards from your terminal. ## Installation @@ -57,6 +57,31 @@ Search the Dune dataset catalog. Categories: `canonical`, `decoded`, `spell`, `community` +### `dune visualization` (alias: `viz`) + +Create and manage visualizations on saved queries. + +| Command | Description | +|---------|-------------| +| `viz create --query-id --name --options [--type chart\|table\|counter\|...]` | Create a visualization on a saved query | +| `viz get ` | Get a visualization's details and options | +| `viz update [--name] [--type] [--description] [--options]` | Update an existing visualization | +| `viz delete ` | Permanently delete a visualization | +| `viz list --query-id [--limit] [--offset]` | List all visualizations for a query | + +Supported types: `chart`, `table`, `counter`, `pivot`, `cohort`, `funnel`, `choropleth`, `sankey`, `sunburst_sequence`, `word_cloud`. + +### `dune dashboard` (alias: `dash`) + +Create and manage dashboards. + +| Command | Description | +|---------|-------------| +| `dashboard create --name [--visualization-ids 1,2,3] [--text-widgets ] [--columns-per-row 1\|2\|3] [--private]` | Create a new dashboard | +| `dashboard get ` or `dashboard get --owner --slug ` | Get a dashboard's details and widgets | +| `dashboard update [--name] [--slug] [--private] [--tags] [--visualization-widgets ] [--text-widgets ]` | Update an existing dashboard | +| `dashboard archive ` | Archive a dashboard | + ### `dune docs` Search and browse Dune documentation. No authentication required.