Skip to main content

Documentation Index

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

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

Workflow commands transform datasets through a pipeline of steps. Each step takes a dataset ID and produces a new output dataset.

workflow onboard

Standardize and validate an uploaded dataset before processing. Usage
landbase-cli workflow onboard <dataset-id> [flags]
dataset-id
string
required
The ID of the dataset to onboard.
Flags
FlagDefaultDescription
--waitBlock until the step completes
--timeout=<seconds>~600Override the default polling timeout

workflow match

Match records in a dataset to Landbase’s database. Usage
landbase-cli workflow match <dataset-id> [flags]
dataset-id
string
required
The ID of the dataset to match.
Flags
FlagDefaultDescription
--waitBlock until the step completes
--timeout=<seconds>~600Override the default polling timeout

workflow enrich

Enrich matched records with firmographic and contact data. Usage
landbase-cli workflow enrich <dataset-id> [flags]
dataset-id
string
required
The ID of the dataset to enrich.
Flags
FlagDefaultDescription
--company-fields=<fields>Comma-separated company fields to include, e.g. industry,size_range,hq_city
--waitBlock until the step completes
--timeout=<seconds>~600Override the default polling timeout

workflow publish

Export an enriched dataset to a downloadable file. Usage
landbase-cli workflow publish <dataset-id> [flags]
dataset-id
string
required
The ID of the dataset to publish.
Flags
FlagDefaultDescription
--format=<format>csvOutput format: csv or jsonl.gz
--waitBlock until the step completes
--timeout=<seconds>~600Override the default polling timeout

workflow sketch

Generate taxonomy or segment hints for a dataset. Usage
landbase-cli workflow sketch <dataset-id> [flags]
dataset-id
string
required
The ID of the dataset to sketch.
Flags
FlagDefaultDescription
--taxonomy-hints=<values>Comma-separated hints, e.g. fintech,healthcare
--waitBlock until the step completes
--timeout=<seconds>~600Override the default polling timeout

workflow status

Check the current status of a running or completed workflow. Usage
landbase-cli workflow status <dataset-id>
dataset-id
string
required
The ID of the dataset whose workflow status to check.
Examples
# Full pipeline from upload to publish
landbase-cli workflow onboard <dataset-id> --wait
landbase-cli workflow match <dataset-id> --wait
landbase-cli workflow enrich <dataset-id> --company-fields=industry,size_range --wait
landbase-cli workflow publish <dataset-id> --format=csv --wait

# Sketch taxonomy hints
landbase-cli workflow sketch <dataset-id> --taxonomy-hints=fintech,healthcare --wait

# Check workflow status
landbase-cli workflow status <dataset-id>