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.

Install Landbase CLI

Video walkthrough

Install the CLI

On macOS or Linux, run:
curl -fsSL https://cli.landbase.com/install.sh | bash
On Windows, run this in PowerShell:
$ProgressPreference = 'SilentlyContinue'; irm https://cli.landbase.com/install.ps1 | iex

Verify the install

Confirm the CLI is available:
command -v landbase-cli
landbase-cli --version

Sign in

landbase-cli auth
The CLI opens a consent page in your browser. If you are not already signed in, you will be prompted to sign in or create an account at https://gtm.landbase.com before the consent page loads.When authorization is complete, return to your terminal. The CLI will confirm sign-in and print the path where it stored the local config.

Confirm everything works

Run this read-only command:
landbase-cli datasets list --limit=1 --no-update-check
The install is complete when landbase-cli --version prints a version, landbase-cli auth succeeds or reports an existing signed-in config, and the dataset list command exits successfully.

If the command is not found

The installer prints the install location and any PATH instructions. If landbase-cli is not available immediately after install:
export PATH="$HOME/.local/bin:$PATH"
command -v landbase-cli
landbase-cli --version
If that works, add the PATH update to your shell profile or open a new terminal session.

Keep the CLI current

Check for and install the latest CLI update:
landbase-cli update
landbase-cli --version

Next Steps

You’re installed and authenticated. Head to Quick Start to run your first search and get results in under five minutes.