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/
Code Examples
cURL
curl "https://gamalogic.com/batchresult/?apikey=your_api_key&batchid=your_batch_id"
Note: Make sure to replace your_api_key with your API key.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
api_key | true | string | Your 32-char API key from the dashboard |
batch_id | true | int | The unique ID of the batch which was received from the above API request |
Download API Result (JSON)
Attribute | 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 |
{
"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",
}
Last updated on