Get started with Kawaa email verification in under 5 minutes.
Step 1: Create Your Account
Sign up for a free Kawaa account at kawaa.com/register. You'll get 100 free email verifications per month to test our service.
Step 2: Get Your API Key
After logging in, navigate to Settings → API Keys and click "Generate New Key". Copy your API key and store it securely.
Step 3: Make Your First API Call
curl -X POST https://api.kawaa.com/v1/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "test@example.com"}'Step 4: Understand the Response
You'll receive a JSON response with the verification result:
{
"email": "test@example.com",
"status": "valid",
"score": 95,
"is_deliverable": true,
"is_disposable": false,
"is_role_based": false,
"mx_found": true,
"smtp_check": true
}