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

ParameterRequiredDescription
api_key (string)TrueYour 32-char API key from the dashboard
batch_id (int)TrueThe unique ID of the batch which was received from the above API request

Status check API Result (JSON)

ParameterTypeDescription
errorBooleanTrue if there is any error
gamalogic_emailid_vrfy list 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_timeintegerTotal 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”,
  }

curl "https://gamalogic.com/batchresult/?apikey=your_api_key&batchid=your_batch_id"

Make sure to replace your_api_key with your API key.