Add a Domain
Configure your custom domain to start receiving emails. See the Domains API.
This guide will walk you through setting up MoMail and making your first API call in under 5 minutes.
Sign up at app.momail.io to create your MoMail account. You will receive a verification email to activate your account.
Once logged in, navigate to the API Keys section in your dashboard and create a new key:
Now you are ready to interact with the MoMail API. Here is a simple example to verify your setup:
curl -X GET https://api.momail.io/v1/domains \ -H "X-API-Key: your_api_key_here"const response = await fetch('https://api.momail.io/v1/domains', { method: 'GET', headers: { 'X-API-Key': 'your_api_key_here' }});
const data = await response.json();console.log(data);import requests
response = requests.get( 'https://api.momail.io/v1/domains', headers={'X-API-Key': 'your_api_key_here'})
print(response.json())You should receive a response like this:
{ "success": true, "data": [], "meta": { "total": 0 }}Add a Domain
Configure your custom domain to start receiving emails. See the Domains API.
Explore the API
Learn about all available endpoints in the API Reference.
Set up MCP
Connect Claude Desktop to your email data. Follow the Claude Desktop guide.