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 one-time starter verifications 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 "X-Api-Key: ev_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": "risky",
"score": 72,
"is_deliverable": false,
"is_disposable": false,
"is_role_based": false,
"mx_found": true
}