The Evaboot API is a JSON REST API that lets you find email addresses and prospect data programmatically.
Need an API Token?
Get your API token from the Evaboot dashboard under Integrations → API.
All API requests must include an Authorization header with your API token:
curl -H "Authorization: Bearer your_api_token_here" \
https://api.evaboot.com/v1/email-finder/Here's how to create an email finding job for a single prospect:
curl -X POST \
-H "Authorization: Bearer your_api_token_here" \
-H "Content-Type: application/json" \
-d '{
"prospects": [
{
"first_name": "John",
"last_name": "Doe",
"company_name": "Example Corp",
"company_domain": "example.com"
}
]
}' \
https://api.evaboot.com/v1/email-finder/Email Finding and Verification
Find professional email addresses for prospects and validate that they won't bounce.
Bulk Prospect Enrichment
Process multiple prospects in a single request.
Sales Navigator Extraction
Extract prospects from Sales Navigator lists and searches.
Webhook Support
Get notified when jobs complete.