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.

Search Landbase’s database using a natural language query. Returns a run_id, session_id, dataset_id, and a content field with your results. Submit a natural language search query for companies and contacts. Usage
landbase-cli search <query> [flags]
query
string
required
Natural language prompt describing the companies or people you want to find.
Flags
FlagDefaultDescription
--download[=<path>]./results.jsonlWrite results to a file. Supports .jsonl, .jsonl.gz, .csv, .parquet
--session=<label>Continue a prior conversation with a follow-up prompt. Accepts a session label or session ID
--format=<format>jsonOutput format: json or table
--limit=<n>Maximum number of results to return
--no-update-checkSkip the daily update check
--verbosePrint request/response details to stderr
Examples
# Find companies
landbase-cli search "find B2B SaaS companies in San Francisco"

# Save results to a file
landbase-cli search "find B2B SaaS companies in San Francisco" --download=results.jsonl

# Follow-up in the same session
landbase-cli search "only show ones with 50+ employees" --session=sf-saas

# Limit results and format as table
landbase-cli search "find AI engineers in London" --limit=20 --format=table