What you can do with Levida
Levida can generate leads by region and city, by country and postal code, or by US ZIP code. After generation, you can review, filter, annotate, and export the results, or automate the same flow with the API and CLI.
This tutorial covers the regular browser workflow, the terminal CLI workflow, curl-based API usage, common mistakes, and next steps.
Levida can generate leads by region and city, by country and postal code, or by US ZIP code. After generation, you can review, filter, annotate, and export the results, or automate the same flow with the API and CLI.
The CLI is for authenticated users who want to run Levida from the terminal, whether they prefer the guided wizard or JSON request files.
python3 scripts/levida_cli.py --base-url https://levida.ai login
python3 scripts/levida_cli.py generate-leads
python3 scripts/levida_cli.py generate-leads examples/generate_leads_postal_code.json --wait
python3 scripts/levida_cli.py generate-leads examples/generate_leads_bulk.json --no-wait
generate-leads runs new Levida searches. import-leads imports existing lead rows.
curl -X POST https://levida.ai/api/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email":"YOUR_EMAIL","password":"YOUR_PASSWORD"}'
curl -X POST https://levida.ai/api/v1/lead-generation/jobs \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"search_method": "postal_code",
"country": "Spain",
"postal_code": "15005",
"keyword": "fisioterapeuta"
}'
curl https://levida.ai/api/v1/lead-generation/jobs/JOB_ID \
-H "Authorization: Bearer YOUR_TOKEN"