API Docs
Download Verified batch
Now with verification completed, it’s time to see the results. Once the above API response as completed
HTTP Request
GET
https://gamalogic.com/batchresult/
Parameters
Parameter | Required | Description |
api_key (string) | True | Your 32-char API key from the dashboard |
batch_id (int) | True | The unique ID of the batch which was received from the above API request |
Status check API Result (JSON)
Parameter | Type | Description |
error | Boolean | True if there is any error |
gamalogic_emailid_vrfy | list of JSON | All the email address that is resolved and shared as a list of information like valid, disposable, Catch-all, role address, and syntax check, do you mean if there are any suggestions and message responses |
resolved_time | integer | Total time taken to resolve the list |
Sample Response to a Batch status request
{
“error”: false,
“gamalogic_emailid_vrfy”: [
{
“do_you_mean”: true,
“emailid”: “sample1@email.com”,
“is_catchall”: false,
“is_disposable”: false,
“is_role”: false,
“is_syntax_valid”: true,
“is_unknown”: false,
“is_valid”: true,
“message”: “Valid ID”
},
{
“do_you_mean”: true,
“emailid”: “sample2@email.com”,
“is_catchall”: false,
“is_disposable”: false,
“is_role”: false,
“is_syntax_valid”: true,
“is_unknown”: false,
“is_valid”: true,
“message”: “Valid ID”
}
]
“resolved_time”: “0:00:05”,
}