Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.upstackdata.com/llms.txt

Use this file to discover all available pages before exploring further.

Cache query parameters locally for reuse. Saved queries live in ~/.upstack_saved/, one JSON file per query.

Subcommands

create <name>

upstack saved create morning-report --command query --from-file ./params.json
FlagDescription
--command <c>Required. One of query, query-attribution, query-cohort.
--from-file <path>JSON file with the query parameters.
--description <text>Optional description for the saved query.
You can also pass query parameters inline as flags (e.g. --measures revenue, --date-start 2026-04-01) — they’re merged with the file values; flags override file values.

list

upstack saved list

show <name>

Inspect a saved query without running it.
upstack saved show morning-report

run <name>

Re-run a saved query.
upstack saved run morning-report
upstack saved run morning-report --output csv --file ./today.csv   # override output on the fly

delete <name>

upstack saved delete morning-report