Operations for extracting profiles from LinkedIn
- List email validation jobs
Verify an email
Verify emails in bulk
Get email validation job results
List email validation job...
Evaboot Public API (1.1.0)
Documentation for the Evaboot Public API
Download OpenAPI description
Languages
Servers
Mock server
https://docs.evaboot.com/_mock/schema
Production Server
https://api.evaboot.com
Request
Validate a single email address synchronously. Returns validation results immediately including deliverability status.
Security
BearerToken
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/email-validation/single/
- Production Serverhttps://api.evaboot.com/v1/email-validation/single/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
curl -i -X POST \
https://docs.evaboot.com/_mock/schema/v1/email-validation/single/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"email": "[email protected]"
}'Response
application/json
{ "success": true, "job_id": "dcbcdb01-42a8-4efb-91a7-ce6a9ba01afb", "prospect": { "email": "[email protected]", "email_validity": "safe", "status": "complete", "error_message": null } }
Request
Create a new job to validate the provided email addresses.
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.
Security
BearerToken
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/email-validation/
- Production Serverhttps://api.evaboot.com/v1/email-validation/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
curl -i -X POST \
https://docs.evaboot.com/_mock/schema/v1/email-validation/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"job_name": "Email List Validation",
"webhook_url": "https://myapp.com/webhook/email-validation",
"prospects": [
{
"email": "[email protected]"
},
{
"email": "[email protected]"
},
{
"email": "[email protected]"
}
]
}'Response
application/json
{ "success": true, "job_id": "550e8400-e29b-41d4-a716-446655440000", "message": "Email validation job created and processing has begun" }
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/email-validation/
- Production Serverhttps://api.evaboot.com/v1/email-validation/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.evaboot.com/_mock/schema/v1/email-validation/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
Example of a single email validation job in the list response
[ { "id": "550e8400-e29b-41d4-a716-446655440000", "status": "complete", "created_at": "2023-01-01T12:00:00Z", "updated_at": "2023-01-01T12:05:00Z", "progress": 100, "error_message": null, "prospect_count": "3", "job_type": "email_validation" } ]
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/email-validation/{id}/
- Production Serverhttps://api.evaboot.com/v1/email-validation/{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-validation/{id}/' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
Example of a completed email validation job with validation results
{ "id": "550e8400-e29b-41d4-a716-446655440000", "status": "complete", "created_at": "2023-01-01T12:00:00Z", "updated_at": "2023-01-01T12:05:00Z", "progress": 100, "error_message": null, "prospects": [ { … }, { … }, { … } ], "job_type": "email_validation" }