Skip to main content
List, inspect, download, and delete datasets in your Landbase workspace.

datasets list

List all datasets in your workspace. Usage
landbase-cli datasets list [flags]
Flags
FlagDefaultDescription
--limit=<n>Maximum number of datasets to return
--no-update-checkSkip the daily update check
--verbosePrint request/response details to stderr

datasets show

Show details for a single dataset. Usage
landbase-cli datasets show <dataset-id> [flags]
dataset-id
string
required
The ID of the dataset to inspect.
Flags
FlagDefaultDescription
--include-runsInclude associated runs in the output
--no-update-checkSkip the daily update check
--verbosePrint request/response details to stderr

datasets lineage

Show the lineage graph for a dataset — the chain of parent and child datasets produced by workflow steps. Usage
landbase-cli datasets lineage <dataset-id> [flags]
dataset-id
string
required
The ID of the dataset whose lineage to display.
Flags
FlagDefaultDescription
--workflow=<name>Filter by workflow type, e.g. publish
--direction=childrenShow child datasets instead of parents
--no-update-checkSkip the daily update check
--verbosePrint request/response details to stderr

datasets download

Download a dataset to a local file. Usage
landbase-cli datasets download <dataset-id> <output-path>
dataset-id
string
required
The ID of the dataset to download.
output-path
string
required
Local file path for the downloaded file. Supported extensions: .parquet, .csv, .jsonl.gz, .jsonl.

datasets delete

Delete a dataset. Usage
landbase-cli datasets delete <dataset-id> [flags]
dataset-id
string
required
The ID of the dataset to delete.
Flags
FlagDefaultDescription
--yesSkip the confirmation prompt
--no-update-checkSkip the daily update check
--verbosePrint request/response details to stderr
Examples
# List all datasets
landbase-cli datasets list

# Show dataset details with runs
landbase-cli datasets show <dataset-id> --include-runs

# Show lineage of child datasets
landbase-cli datasets lineage <dataset-id> --direction=children

# Download as CSV
landbase-cli datasets download <dataset-id> ./output.csv

# Delete without confirmation
landbase-cli datasets delete <dataset-id> --yes