Build your first prospect list
In this tutorial you will run a natural-language search, read what came back, download the results as a CSV, and open them. By the end you will have a working prospect list saved to your machine and a clear mental model of how the CLI search loop works. What you will need: landbase-cli installed and authenticated. If you have not done that yet, complete Install Landbase CLI first.1. Run your first search
Open a terminal and run:content field — that is a plain-English summary of what Landbase found. The dataset_id is the ID of the audience dataset it created in your workspace.
2. Inspect what came back
Before downloading, ask for a peek at the raw records:<dataset-id> with the dataset_id value from the search response. You will see a few sample rows so you can confirm the shape of the data before downloading the whole thing.
3. Download the results as CSV
Now download the full audience:--download flag controls both where the file is saved and the output format. Using .csv triggers a publish workflow — Landbase formats the data as a spreadsheet. This takes about 30 seconds.
When it finishes, you will have a prospects.csv file in your working directory.
4. Open the file
5. Save a different format next time
You picked CSV for this tutorial because it opens in Excel or Sheets. For programmatic use,.jsonl is more practical:
jq or load into Python. See Export data in different formats for a breakdown of all options.
What you learned
- The CLI takes a plain-English query and returns a structured JSON response
- The
dataset_idin the response identifies the audience in your Landbase workspace --downloadlets you pull the results to disk in one command- The file extension controls the output format

