Operations for extracting profiles from LinkedIn
- Find emails in bulk
Evaboot Public API (1.1.0)
Documentation for the Evaboot Public API
Request
Find and validate email for a single person by providing their first name, last name, and company information. This endpoint runs synchronously and returns the email result immediately.
Company Information: Either company_name or company_domain must be provided to improve email finding accuracy.
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/email-finder/single/
- Production Serverhttps://api.evaboot.com/v1/email-finder/single/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.evaboot.com/_mock/schema/v1/email-finder/single/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"first_name": "John",
"last_name": "Doe",
"company_name": "Example Corp",
"company_domain": "example.com"
}'- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/email-finder/
- Production Serverhttps://api.evaboot.com/v1/email-finder/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.evaboot.com/_mock/schema/v1/email-finder/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'[ [ { … }, { … } ] ]
Request
Create a new job to find email addresses for the provided prospects. Each prospect requires first_name, last_name, and company_name. The company_domain field is optional and can help improve email finding accuracy if you know the company's web domain.
Webhook Support: This endpoint supports webhooks. Include a webhook_url in your request to receive a POST notification when the job completes. The webhook will receive the same data as the GET detail endpoint.
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/email-finder/
- Production Serverhttps://api.evaboot.com/v1/email-finder/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.evaboot.com/_mock/schema/v1/email-finder/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"job_name": "Tech Startup Email Hunt",
"webhook_url": "https://myapp.com/webhook/email-finder",
"prospects": [
{
"first_name": "John",
"last_name": "Doe",
"company_name": "Example Corp",
"company_domain": "example.com"
},
{
"first_name": "Jane",
"last_name": "Smith",
"company_name": "TechStart Inc"
}
]
}'- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/email-finder/{id}/
- Production Serverhttps://api.evaboot.com/v1/email-finder/{id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.evaboot.com/_mock/schema/v1/email-finder/{id}/' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "id": "dcbcdb01-42a8-4efb-91a7-ce6a9ba01afb", "status": "complete", "created_at": "2023-01-01T12:00:00Z", "updated_at": "2023-01-01T12:05:00Z", "progress": 100, "error_message": "1 prospect failed.", "prospects": [ { … }, { … }, { … } ], "job_type": "email_finder" }