> ## Documentation Index
> Fetch the complete documentation index at: https://www.landbase.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

> Run your first Landbase CLI search and get results in under five minutes.

<div id="breadcrumb-wrapper" />

<div
  style={{display: 'none'}}
  data-related-resources={JSON.stringify([
{ title: 'What can you do with the CLI?', href: '/what-can-you-do-with-the-cli' },
{ title: 'Use Landbase CLI in Claude Code and Codex', href: '/landbase-cli' },
{ title: 'Install Landbase CLI', href: '/install' }
])}
  id="page-related-resources"
/>

# Quick Start

<div className="blog-post-content">
  Before you begin, make sure you have [installed and authenticated the Landbase CLI](/docs/install).

  ## Run your first search

  Ask Landbase for an audience using plain English:

  ```bash theme={null}
  landbase-cli search "find B2B SaaS companies in San Francisco"
  ```

  The CLI returns a JSON response that includes a `run_id`, `session_id`, `dataset_id`, and a `content` field describing what it found.

  ## Save the results

  Add `--download` to write results to a file:

  ```bash theme={null}
  landbase-cli search "find B2B SaaS companies in San Francisco" --download=results.jsonl
  ```

  When the file is ready, inspect it:

  ```bash theme={null}
  head -5 results.jsonl
  ```

  Each line is a JSON object representing one company or contact.

  ## What's next

  * [What can you do with the CLI?](/docs/what-can-you-do-with-the-cli) — full guide to search, match, enrich, upload, datasets, workflows, and more
  * [Use in Claude Code and Codex](/docs/landbase-cli) — let an agent run CLI commands on your behalf
</div>
