Menu
HomeVisit Gamalogic.comGitHub
Skip to Content
EmailsDownload Verified Batch

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

ParameterRequiredTypeDescription
api_keytruestringYour 32-char API key from the dashboard
batch_idtrueintThe unique ID of the batch which was received from the above API request

Download API Result (JSON)

AttributeTypeDescription
errorbooleanTrue if there is any error
gamalogic_emailid_vrfylist of JSONAll 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 integerTotal 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