Base URL: https://api.validemail.net
/v1/bulkSubmit up to 40,000 emails for async verification. Supports application/json or multipart/form-data.
{
"key": "YOUR_API_KEY",
"emails": "user1@example.com,user2@example.com",
"listName": "MyBulkList"
}
{
"message": "Bulk request accepted",
"bulkId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
💡 Save the bulkId to check status and download results.
/v1/bulk/statusCheck processing progress using your bulkId and API key.
GET https://api.validemail.net/v1/bulk/status?id=YOUR_BULK_ID&key=YOUR_API_KEY
{
"message": "Your batch is being processed.",
"processed": 25000,
"total": 40000
}
{
"message": "Your batch has been processed successfully.",
"processed": 40000,
"total": 40000
}
/v1/bulk/downloadcsvDownload the final results of your bulk verification as a CSV file.
GET https://api.validemail.net/v1/bulk/downloadcsv?id=YOUR_BULK_ID&key=YOUR_API_KEY
📁 File will be named like bulk_<GUID>.csv and will download automatically.
/v1/bulk/balanceRetrieve the remaining email verification credits linked to your API key.
GET https://api.validemail.net/v1/bulk/balance?key=YOUR_API_KEY
{
"balance": 1234
}