EmailListVerify.com
1. Validate/Verify a single email address:
EmailListVerify.com | ||
---|---|---|
URL |
GET https://apps.emaillistverify.com/api/verifyEmail |
GET API DEFAULT URL:https://api.zerobounce.net/v2/validate API U.S.A. URL*:https://api-us.zerobounce.net/v2/validate |
Request |
|
|
Response |
Response is one of the below:
|
Response example: "address": "s.krisztian@force.com", |
Examples:
HTTP request
EmailListVerify: https://apps.emaillistverify.com/api/verifyEmail?secret=ReplaceWithYourApiKey&email=ReplaceWithYours
HTTP request
ZeroBounce:
API DEFAULT URL: https://api.zerobounce.net/v2/validate?api_key=ReplaceWithYourApiKey&email=ReplaceWithYours
API U.S.A. URL*: https://api-us.zerobounce.net/v2/validate?api_key=ReplaceWithYourApiKey
*This endpoint uses servers located within the United States. By utilizing this endpoint, you acknowledge and consent to your data being processed on servers in the United States.
A detailed response like the one ZeroBounce offers is important to understand precisely why an email is valid, invalid or tagged as risky.
2. Bulk email validator - send file
EmailListVerify.com | ||
---|---|---|
URL |
POST https://apps.emaillistverify.com/api/verifApiFile?secret=YourApiKey |
POST https://bulkapi.zerobounce.net/v2/sendfile |
Request |
Body-type: form-data
|
Body-type: form-data
|
Response | The response we get contains the uploaded file ID and nothing else. |
Example of successful response: { "success": true, "message": "File Accepted", "file_name": "ExampleCSV2.csv", "file_id": "55634bf2-872b-439c-8ac4-0c7xxxxxxxxx" } |
Only the bolded parameters are mandatory. Anything else is entirely optional and should not be included in the API request if they will be left blank.
3. Bulk Validation - Get file
EmailListVerify.com | ||
---|---|---|
URL |
GET
https://apps.emaillistverify.com/api/getApiFileInfo |
GET
https://bulkapi.zerobounce.net/v2/getfile |
Request |
Params
|
Params
|
Response |
Example 1992646|ExampleCSV2.csv|no|2|2|finished|1690276887|https://elv-files.s3.eu-central-1.amazonaws.com/2023-07/1b276aab8e876407a77dd1c1ab95***********.csv|https://elv-files.s3.eu-central-1.amazonaws.com/2023-07/1b276aab8e876407a77dd1c1ab95034****************f914_all.csv |
Example "Email Address", "Custom", "Custom", "Custom", "ZB Status", "ZB Sub Status", "ZB Account", "ZB Domain", "ZB First Name", "ZB Last Name", "ZB Gender", "ZB Free Email", "ZB MX Found", "ZB MX Record", "ZB SMTP Provider", "ZB Did You Mean" |
Examples:
HTTP request
ZeroBounce: https://bulkapi.zerobounce.net/v2/getfile?api_key=ReplaceWithYours&file_id=ReplaceWithYours
HTTP request
EmailListVerify: https://apps.emaillistverify.com/api/getApiFileInfo?secret=ReplaceWithYours&id=ReplaceWithYours
NeverBounce
1. Validate/Verify a single email address:
NeverBounce | ||
---|---|---|
URL |
GET https://api.neverbounce.com/v4/single/check |
GET API DEFAULT URL:https://api.zerobounce.net/v2/validate API U.S.A. URL*:https://api-us.zerobounce.net/v2/validate |
Request |
|
|
Response |
Response example: { |
Response example: "address": "youremail@domain.com", |
Examples:
HTTP request
ZeroBounce:
API DEFAULT URL: https://api.zerobounce.net/v2/validate?api_key=ReplaceWithYourApiKey&email=ReplaceWithYours
API U.S.A. URL*: https://api-us.zerobounce.net/v2/validate?api_key=ReplaceWithYourApiKey
HTTP request
NeverBounce: https://api.neverbounce.com/v4/single/check?key=ReplaceWithYours&email=ReplaceWithYours
*This endpoint uses servers located within the United States. By utilizing this endpoint, you acknowledge and consent to your data being processed on servers in the United States.
2. Verifying a list or ZeroBounce’s Batch validator
NeverBounce | ||
---|---|---|
URL |
POST https://api.neverbounce.com/v4/jobs/create |
POST https://bulkapi.zerobounce.net/v2/validatebatch |
Request |
Body-type: form-data
|
Params
|
Response |
Example of successful response: { |
Example of successful response: {"email_batch": [{ |
ZeroBounce’s list/batch email validator provides the results in the response body directly without the need of creating a task/job.
3. Sending a CSV by URL / BulkApi Send file
NeverBounce | ||
---|---|---|
URL |
POST
https://api.neverbounce.com/v4/jobs/create |
POST
https://bulkapi.zerobounce.net/v2/sendfile |
Request |
Body-type: form-data
|
Body-type: form-data
|
Response |
Example of successful response: { |
Example of successful response: { |
4. Checking the status of a bulk validation / File Status
NeverBounce | ||
---|---|---|
URL |
GET
https://api.neverbounce.com/v4/jobs/status |
GET
https://bulkapi.zerobounce.net/v2/filestatus |
Request |
Params
|
Params
|
Response |
Example of successful response: { |
Example of successful response: { |
Examples:
HTTP request
ZeroBounce: https://bulkapi.zerobounce.net/v2/filestatus?api_key=ReplaceWithYourApiKey&file_id=ReplaceWithYours
HTTP request
NeverBounce: https://api.neverbounce.com/v4/jobs/status?key=ReplaceWithYours&job_id=ReplaceWithYours
5. Retrieving the Results / Get File
NeverBounce | ||
---|---|---|
URL |
GET
https://api.neverbounce.com/v4/jobs/download |
GET
https://bulkapi.zerobounce.net/v2/getfile |
Request |
Params
|
Params
|
Response |
Example of successful response: "support@neverbounce.com", "Fred McValid", valid "invalid@neverbounce.com", "Bob McInvalid", invalid |
Example of successful response: "Email Address", "Custom", "Custom", "Custom", "ZB Status", "ZB Sub Status", "ZB Account", "ZB Domain", "ZB First Name", "ZB Last Name", "ZB Gender", "ZB Free Email", "ZB MX Found", "ZB MX Record", "ZB SMTP Provider", "ZB Did You Mean" |
If the request was made via Postman we can download the results as .CSV file from the following:
HTTP request
ZeroBounce: https://bulkapi.zerobounce.net/v2/getfile?api_key=ReplaceWithYourApiKey&file_id=ReplaceWithYours
HTTP request
NeverBounce: https://api.neverbounce.com/v4/jobs/download?key=ReplaceWithYours&job_id=ReplaceWithYours
6. Account info/ Get balance
NeverBounce | ||
---|---|---|
URL |
GET
https://api.neverbounce.com/v4.2/account/info |
GET API DEFAULT URL: https://api.zerobounce.net/v2/getcredits API U.S.A. URL*:https://api-us.zerobounce.net/v2/getcredits |
Request |
Params
|
Params
|
Response |
Example of successful response: { |
Example of successful response: { |
Examples:
HTTP request
ZeroBounce:
API DEFAULT URL: https://api.zerobounce.net/v2/getcredits?api_key=ReplaceWithYourApiKey
API U.S.A. URL*: https://api-us.zerobounce.net/v2/getcredits?api_key=ReplaceWithYourApiKey
HTTP request
NeverBounce: https://api.neverbounce.com/v4.2/account/info?key=ReplaceWithYours
*This endpoint uses servers located within the United States. By utilizing this endpoint, you acknowledge and consent to your data being processed on servers in the United States.
Kickbox
1. Validate/Verify a single email address:
Kickbox | ||
---|---|---|
URL |
GET https://api.kickbox.com/v2/verify |
GET API DEFAULT URL:https://api.zerobounce.net/v2/validate API U.S.A. URL*:https://api-us.zerobounce.net/v2/validate |
Request |
|
|
Response |
response_example "result": "deliverable", |
response_example "address": "YourEmail", |
Examples:
HTTP request
ZeroBounce:
API DEFAULT URL: https://api.zerobounce.net/v2/validate?api_key=ReplaceWithYourApiKey&email=ReplaceWithYours
API U.S.A. URL*: https://api-us.zerobounce.net/v2/validate?api_key=ReplaceWithYourApiKey
HTTP request
Kickbox: https://api.kickbox.com/v2/verify?apikey=ReplaceWithYours&email=ReplaceWithYours
*This endpoint uses servers located within the United States. By utilizing this endpoint, you acknowledge and consent to your data being processed on servers in the United States.
2. Validate email in batch/ ZeroBounce’s Batch validator
Kickbox | ||
---|---|---|
URL |
PUT https://api.kickbox.com/v2/verify-batch |
POST https://bulkapi.zerobounce.net/v2/validatebatch |
Request |
Params
Headers
|
Params
|
Response |
Example of successful response: { |
Example of successful response: {"email_batch": [{ |
3. Kickbox’s batch validator via .csv upload / ZeroBounce’s Bulk email validator(via .csv files)
Kickbox | ||
---|---|---|
URL |
PUT
https://api.kickbox.com/v2/verify-batch |
POST
https://bulkapi.zerobounce.net/v2/sendfile |
Request |
Params
Headers
|
Body-type: form-data
|
Response |
Example of successful response: { |
Example of successful response: { |
The return_url parameter is the equivalent of X-Kickbox-Callback header where the callback URL can be specified.
The URL will be used to call back when the validation is completed.
If a return_url was specified in the Multipart Form Data during the send file request, we will POST the following data to the URL when the validation process is complete.
4. Checking a Batch Verification Status / Bulk Email Validator File Status
Kickbox | ||
---|---|---|
URL |
GET
https://api.kickbox.com/v2/verify-batch |
GET
https://bulkapi.zerobounce.net/v2/filestatus |
Request |
Params
|
Params
|
Response |
Example of successful response: { |
Example of successful response: { |
Examples:
HTTP request
ZeroBounce: https://bulkapi.zerobounce.net/v2/filestatus?api_key=ReplaceWithYourApiKey&file_id=ReplaceWithYours
HTTP request
Kickbox: https://api.kickbox.com/v2/verify-batch?jobid=ReplaceWithYours&apikey=ReplaceWithYours
BriteVerify
1. Account information / Get Credits
BriteVerify | ||
---|---|---|
URL |
GET https://bulk-api.briteverify.com/api/v3/accounts/credits |
GET API DEFAULT URL:https://api.zerobounce.net/v2/getcredits API U.S.A. URL*:https://api-us.zerobounce.net/v2/getcredits |
Request |
Content-Type application/json Authorization ApiKey |
Params
|
Response |
Example of successful response: { |
Example of successful response: { |
*This endpoint uses servers located within the United States. By utilizing this endpoint, you acknowledge and consent to your data being processed on servers in the United States.
2. Validate/Verify a single email address
BriteVerify | ||
---|---|---|
URL |
POST https://bpi.briteverify.com/api/public/v1/fullverify |
GET API DEFAULT URL:https://api.zerobounce.net/v2/validate API U.S.A. URL*:https://api-us.zerobounce.net/v2/validate |
Request |
Content-Type application/json Authorization ApiKey |
|
Response |
Response example: { |
Response example: "address": "YourEmail", |
*This endpoint uses servers located within the United States. By utilizing this endpoint, you acknowledge and consent to your data being processed on servers in the United States.
3. Bulk validator / Batch validator
BriteVerify’s bulk validator is the equivalent of ZeroBounce’s batch validator.
BriteVerify | ||
---|---|---|
URL |
POST
https://bulk-api.briteverify.com/api/v3/lists |
POST
https://bulkapi.zerobounce.net/v2/validatebatch |
Request |
Params
Headers
|
Params
|
Response |
Example of successful response: { |
Example of successful response: {"email_batch": [{ |
Emailable
1. Validate/Verify a single email address
Emailable | ||
---|---|---|
URL |
GET https://api.emailable.com/v1/verify |
GET API DEFAULT URL:https://api.zerobounce.net/v2/validate API U.S.A. URL*:https://api-us.zerobounce.net/v2/validate |
Request |
Params
|
Params
|
Response |
Response example: { |
Response example: "address": "YourEmail", |
HTTP request
ZeroBounce:
API DEFAULT URL: https://api.zerobounce.net/v2/validate?api_key=ReplaceWithYourApiKey&email=ReplaceWithYours
API U.S.A. URL*: https://api-us.zerobounce.net/v2/validate?api_key=ReplaceWithYourApiKey
HTTP request
Emailable: https://api.emailable.com/v1/verify?email=ReplaceWithYours&api_key=ReplaceWithYours
*This endpoint uses servers located within the United States. By utilizing this endpoint, you acknowledge and consent to your data being processed on servers in the United States.
2. Batch email validator
Emailable | ||
---|---|---|
URL |
PUT https://api.emailable.com/v1/batch |
POST https://bulkapi.zerobounce.net/v2/validatebatch |
Request |
Params
|
Params
|
Response |
Example of successful response: { |
Example of successful response: {"email_batch": [{ |
The ZeroBounce Validate Batch endpoint allows you to validate batches of up to 100 emails simultaneously. To validate more you can use the Bulk email validator.
3. Account information / Get Credits
Emailable | ||
---|---|---|
URL |
GET
https://api.emailable.com/v1/account |
GET API DEFAULT URL: https://api.zerobounce.net/v2/getcredits API U.S.A. URL*:https://api-us.zerobounce.net/v2/getcredits |
Request |
Params
|
Params
|
Response |
Example of successful response: { |
Example of successful response: { |
HTTP request
ZeroBounce:
API DEFAULT URL: https://api.zerobounce.net/v2/getcredits?api_key=ReplaceWithYourApiKey
API U.S.A. URL*: https://api-us.zerobounce.net/v2/getcredits?api_key=ReplaceWithYourApiKey
HTTP request
Emailable: https://api.emailable.com/v1/account?api_key=ReplaceWithYours
*This endpoint uses servers located within the United States. By utilizing this endpoint, you acknowledge and consent to your data being processed on servers in the United States.