Search for companies using natural language or structured filters.
Usage
tomba reveal --query "<natural_language_query>"
tomba reveal --country <codes> --industry <industry>
Examples
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

HTTP call
curl --request POST \
--url 'http://127.0.0.1:3001/reveal' \
--header 'Content-Type: application/json' \
--data '{
"query": "SaaS startups in Europe"
}'
curl --request POST \
--url 'http://127.0.0.1:3001/reveal' \
--header 'Content-Type: application/json' \
--data '{
"country": "US",
"industry": "Technology",
"size": "101-500"
}'
Last modified on