# Reveal (Company Search)

Search for companies using natural language or structured filters.

## Usage

```bash
tomba reveal --query "<natural_language_query>"
tomba reveal --country <codes> --industry <industry>
```

## Examples

```bash
tomba reveal --query "SaaS startups in Europe"
tomba reveal --country US,UK --industry Technology
tomba reveal --country US --size 101-500,501-1000 --page 2
```

## Demo

![tomba reveal](/cli/reveal.svg)

## HTTP call

```bash
curl --request POST \
  --url 'http://127.0.0.1:3001/reveal' \
  --header 'Content-Type: application/json' \
  --data '{
	"query": "SaaS startups in Europe"
}'
```

```bash
curl --request POST \
  --url 'http://127.0.0.1:3001/reveal' \
  --header 'Content-Type: application/json' \
  --data '{
	"country": "US",
	"industry": "Technology",
	"size": "101-500"
}'
```
