Features
Email verification and high-deliverability transactional sending — in a single platform with one unified credit balance.
Remove bad emails before they cost you — in deliverability, reputation, and real money.
Confirmations, resets, receipts, and notifications — over a REST API or SMTP, with no infrastructure to run.
Reputable IPs, aligned authentication, and bounce handling — you just send.
Integrate email verification and sending directly into your product. Clean, predictable JSON responses every time.
API Key Auth
Secure per-user API keys with one-click regeneration. Pass as a Bearer token or X-API-Key header.
Result caching
Verified addresses are cached. Subsequent calls to the same address return instantly and cost zero credits.
Rate limiting
Configurable rate limits per user and per IP. Our admin panel lets you tune limits per plan.
Batch endpoint
POST an array of up to 1,000 addresses and get back all results in a single response.
Global CDN
Edge-deployed API endpoints with <200ms median response globally.
Usage stats
Query your remaining credits and usage history via the API — no dashboard login required.
curl -X GET \
"https://neuramail.cl/api/v1/verify?email=user@example.com" \
-H "Authorization: Bearer nm_live_xxxxxxxx"
// Response
{
"email": "user@example.com",
"status": "valid",
"sub_status": null,
"is_catchall": false,
"mx_found": true,
"credits_used": 1,
"cached": false
}