After submitting a batch of email addresses for verification with the Intelligent Verification API, you can download the results file by making a specific API call using the 'jobId'. This guide explains how to do it.
Steps to Download the Results:
-
Specify the jobId: Each batch verification job has a unique identifier called 'jobId'. You need this ID to fetch the results.
-
Make the API Call: Using the cURL command, initiate a request to download the results:
curl --location --request GET 'https://api.lastbounce.com/api/file/download/c4f3c554-76e2-4a0e-8331-5c7551a8a250' \ --header 'x-api-key: DdTHUVFAI4Q6u810nlKhfIhHHo8qmoYqJD4Ns7jJ'
Make sure to replace
c4f3c554-76e2-4a0e-8331-5c7551a8a250
with your specificjobId
. -
Interpret the Downloaded Data: The data you receive will be in CSV format containing the results of the email verification. Here's a sample of what you might see:
Email,Verified Email,Corrected,Result,Additional Status Info virgilio.so@demandscience.com,virgilio.so@demandscience.com,FALSE,VALID,OK virgilio_so_jr@yahoo.cmo,virgilio_so_jr@yahoo.cmo,FALSE,UNKNOWN,B2C virgilio.so@gmail.com,virgilio.so@gmail.com,FALSE,VALID,OK
This CSV contains columns for:
- Email: The original email submitted for verification.
- Verified Email: The verified or corrected version of the original email.
- Corrected: A flag to indicate if the email was corrected.
- Result: The result of the verification, such as VALID or UNKNOWN.
- Additional Status Info: Provides more specific reasons for the result.
Comments
0 comments
Article is closed for comments.