Integrate VeriMails with your stack

Connect email verification to any tool via our REST API. No SDK required.

Works with everything you already use

Native support for automation platforms, CRMs, and every major programming language.

Automation Platforms
Zapier

Connect VeriMails to 5,000+ apps via Zapier.

Learn more
Make (Integromat)

Build automated verification workflows.

Learn more
n8n

Self-hosted workflow automation with VeriMails.

Learn more
CRM & Marketing
HubSpot

Verify contacts directly in your CRM.

Learn more
Salesforce

Clean your Salesforce contact database.

Learn more
Mailchimp

Verify subscribers before sending campaigns.

Learn more
Google Sheets

Verify email lists right from your spreadsheet.

Learn more
WordPress

Add email verification to your forms.

Learn more
Languages & SDKs
Python

pip install requests — verify in 3 lines of code.

View example
Node.js

npm — simple HTTP calls to our API.

View example
PHP

cURL integration in minutes.

View example
Go

Native HTTP client works perfectly.

View example
Platform & Universal
REST API

Works with any language or platform.

Read the docs
Webhooks

Get notified when bulk jobs complete.

Read the docs
CSV Upload

Drag and drop — no integration needed.

Learn more

Integrate in minutes

One endpoint. Any language. Copy, paste, ship.

# Verify a single email address
curl -G "https://api.verimails.com/v1/verify" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  --data-urlencode "email=john@acme.com"

# Response
{
  "email": "john@acme.com",
  "status": "valid",
  "score": 97,
  "disposable": false
}
import requests

API_KEY = "YOUR_API_KEY"

response = requests.get(
  "https://api.verimails.com/v1/verify",
  headers={"Authorization": f"Bearer {API_KEY}"},
  params={"email": "john@acme.com"}
)

result = response.json()
print(result["status"], result["score"])
# valid 97
const API_KEY = 'YOUR_API_KEY';

const res = await fetch(
  `https://api.verimails.com/v1/verify?email=john@acme.com`,
  { headers: { 'Authorization': `Bearer ${API_KEY}` } }
);

const data = await res.json();
console.log(data.status, data.score);
// valid 97

Start integrating today

100 free credits. No credit card required.