MailOdds

Airtable + MailOdds

Validate email fields in your Airtable bases automatically. Keep contact databases clean and filter by email quality.

Setup time: 5-10 min
Difficulty: Beginner
1,000 free validations included

Prerequisites

  • MailOdds account with API key
  • Airtable base with email field
  • Zapier, Make, or n8n account

Example Workflow

1

Trigger: New Record in Airtable

Watch for new records or updated email fields in your base.

2

Validate: MailOdds API Call

Send the email to MailOdds for full SMTP verification.

3

Update: Write Results Back

Update the record with validation status, action, and quality score.

4

Filter: Create Smart Views

Use Airtable views to segment by valid, invalid, or risky emails.

Zapier: Validate Airtable Email

JAVASCRIPT
// Zapier Code Step - Validate Airtable Record Email
const response = await fetch('https://api.mailodds.com/v1/validate', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    email: inputData.email // Mapped from Airtable email field
  })
});

const result = await response.json();

return {
  email: result.result.email,
  status: result.result.status,
  action: result.result.action,
  is_valid: result.result.action === 'accept',
  score: result.result.score
};

Make: Airtable Scenario

JAVASCRIPT
// Make Scenario - Airtable + MailOdds
// 1. Airtable: Watch Records (trigger on new records)
// 2. HTTP Module: POST to https://api.mailodds.com/v1/validate
//    Headers: Authorization: Bearer YOUR_API_KEY
//    Body: { "email": "{{1.fields.Email}}" }
// 3. Airtable: Update Record
//    Field "Validation Status" = {{2.result.status}}
//    Field "Email Quality" = {{2.result.action}}

Frequently Asked Questions

Troubleshooting

Need more help?

Can't find what you're looking for? We're here to help you get Airtable working.

Clean Your Airtable Email Data

Get 1,000 free validations and start verifying Airtable emails today.