Quickstart
Get your first leads in minutes.
1) Preview results
Preview runs without authentication and without spending credits.
curl -X POST https://dievio.com/api/preview \
-H "Content-Type: application/json" \
-d '{
"_per_page": 25,
"_page": 1,
"job_titles": ["Founder", "CEO"],
"person_location_country": ["United States"]
}'
2) Run a full search (dashboard)
Use the dashboard to run paid searches. Credits are deducted based on the number of results returned.
3) Use the API
Generate an API key in the dashboard and call the public search endpoint.
curl -X POST https://dievio.com/api/public/search \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"_per_page": 25,
"_page": 1,
"max_results": 500,
"job_titles": ["VP Sales"],
"person_location_country": ["United States"],
"include_emails": true,
"include_phones": false
}'
4) Export results
Export CSV/JSON/Excel from Find Leads or Lists. Use “Save Leads” to add results to a list before exporting.