API Reference

Batch Verification

Verify multiple email addresses in a single API call.

Endpoint

POST https://api.kawaa.com/v1/verify/batch

Request Body

{
  "emails": [
    "john@example.com",
    "jane@example.com",
    "bob@company.org"
  ]
}

Limits

  • Maximum 100 emails per batch request
  • For larger lists, use the File Upload API
  • Batch requests count as 1 credit per email verified

Response

{
  "batch_id": "batch_abc123",
  "total": 3,
  "results": [
    {"email": "john@example.com", "status": "valid", "score": 95},
    {"email": "jane@example.com", "status": "valid", "score": 92},
    {"email": "bob@company.org", "status": "invalid", "score": 0}
  ],
  "summary": {
    "valid": 2,
    "invalid": 1,
    "risky": 0,
    "unknown": 0
  }
}

Was this article helpful?

Still need help?

Can't find what you're looking for? Our support team is here to assist you.

Contact Support