MailOdds
Developer Quick Start

Ship email in 5 minutes

Validate, send, and manage subscribers with one API key. SDKs for 11 languages, test mode, and debugging tools.

1

Get your API key

Create an account or use the sandbox to test immediately

Free tier available

1,000 trial credits + 50/month free tier

Create Free Account

Use test mode

Try the API with predictable responses

$ mo_test_your_api_key
2

Install the SDK

Choose your language and add the dependency

npm install @mailodds/sdk
View source on GitHub:
3

Make your first API call

Pick an API, copy the code, and run it. Test mode works immediately.

TYPESCRIPT Validate an email
import { Configuration, EmailValidationApi } from '@mailodds/sdk';

const config = new Configuration({
  basePath: 'https://api.mailodds.com',
  headers: { 'Authorization': 'Bearer mo_test_your_api_key' }
});

const api = new EmailValidationApi(config);
const result = await api.validateEmail({
  validateRequest: { email: 'test@deliverable.mailodds.com' }
});

console.log(result);
// { status: 'valid', action: 'accept', ... }
4

Test different scenarios

Use test domains with mo_test_ keys to get predictable responses without consuming credits

Click a test domain to see the expected response:

// Expected response
{
  "email": "test@deliverable.mailodds.com",
  "status": "valid",
  "action": "accept",
  "test_mode": true
}
5

Go to production

Complete this checklist before going live

  • Switch to live API key (mo_live_xxx)
  • Add error handling for rate limits
  • Configure webhook endpoint for bulk jobs
  • Review validation policies for your use case
  • Verify a sending domain (DKIM + SPF + DMARC)
  • Set up double opt-in for subscriber lists

Explore more features

Need the full API reference?

Every endpoint, response field, error code, webhook contract, and retry pattern in one page.

API Documentation

Need a different language?

11 official SDKs: Python, TypeScript, PHP, Java, Go, C#, Ruby, Kotlin, Rust, Swift, and Dart.

All SDKs

Test with Postman

Download our official Postman collection to explore all API endpoints with pre-configured auth and example payloads.

Postman Collection

Prefer no-code?

Connect MailOdds to Zapier, Make, n8n, and 5,000+ apps without writing code.

View Integrations

Questions? Contact us or check the documentation.