Learn how to verify your first email address using the Kawaa API.
Single Email Verification
The simplest way to verify an email is using a POST request:
curl -X POST https://api.kawaa.com/v1/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "john@example.com"}'Using Our SDKs
We provide official SDKs for popular programming languages:
Python
from kawaa import Kawaa
client = Kawaa(api_key="YOUR_API_KEY")
result = client.verify("john@example.com")
print(result.status) # "valid" or "invalid"Node.js
const Kawaa = require('kawaa');
const client = new Kawaa('YOUR_API_KEY');
const result = await client.verify('john@example.com');
console.log(result.status);Testing in the Dashboard
You can also test email verification directly in your dashboard without writing any code. Go to the Dashboard and use the single verification form.