Skip to main content
Getting Started

Making Your First Verification

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 "X-Api-Key: ev_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"email": "john@example.com"}'

Using Our SDKs

We provide published packages for Node.js and Python, plus source-only clients for additional popular 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.

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