Bulk Email Verification
curl --location 'https://api.trueinbox.io/v1/api/bulk-email-verify' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"keys":[
"username1@domain",
"username2@domain",
...
],
"name": "demo"
}'
Response
{
"message": "Bulk email verification started. We've locked 200 credits for processing. We will release credits for failed verification on completion",
"uid": "018a2e10-97ae-4072-8d4d-49554687c85d",
"total_credits": 25000,
"credits_used": 517,
"credits_remaining": 24483
}
Bulk verification result
curl --location 'https://api.trueinbox.io/v1/api/bulk-result?uid=018a2e10-97ae-4072-8d4d-49554687c85d¤tPage=1&limit=500'
--header 'Authorization: Bearer <token>'
Response
{
"result": [
{
"uid": "08c0fe4e-e550-4d61-929e-b970e559f211",
"key": "username1@domain",
"meta": null,
"result": {
"status": "completed",
"result": "valid",
"confidenceScore": 99,
"smtpProvider": "Google",
"mailDisposable": false,
"mailAcceptAll": false,
"free": true
},
"success": true,
"status": "completed",
"reason": ""
},
{
"uid": "6e2e6460-cf6a-411f-88a0-414f14eb2ddb",
"key": "username2@domain",
"meta": null,
"result": {
"status": "completed",
"result": "valid",
"confidenceScore": 99,
"smtpProvider": "Google",
"mailDisposable": false,
"mailAcceptAll": false,
"free": false
},
"success": true,
"status": "completed",
"reason": ""
},
...
],
"totalCount": 200,
"totalValid": 190,
"totalRisky": 5,
"totalInvalid": 5,
"successCount": 200,
"currentPage": "1",
"limit": 500,
"numPages": 1
}
Bulk verification result csv
curl --location 'https://api.trueinbox.io/v1/api/bulk-result-csv?uid=018a2e10-97ae-4072-8d4d-49554687c85d¤tPage=1&limit=500' \
--header 'Authorization: Bearer <token>'
Response

Last updated