API Docs

Get the status of a batch

GET requests to the batch endpoint will get the current status of the batch verification job specified in the id parameter. You will need to check the updates of the API and check the status periodically.

HTTP Request

GET

https://gamalogic.com/batchstatus/

Parameters

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

Status check API Result (JSON)

ParameterTypeDescription
processedintegerNumber of email addresses processed
errorBooleanTrue if there is any error
status stringDisplays the status of the batch like completed or processing
total integerTotal email address uploaded to verify

Sample Response to a Batch status request

{
    “error”: false,
    “status”: “processing”,
    “processed”: 50000,
    “total”: 100000
}

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

Make sure to replace your_api_key with your API key.