Skip to content

Quick Start

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:

  1. Go to Settings > API Keys
  2. Click Create New Key
  3. Give your key a descriptive name (e.g., “Production API”)
  4. Copy the key immediately (it will not be shown again)

Now you are ready to interact with the MoMail API. Here is a simple example to verify your setup:

Terminal window
curl -X GET https://api.momail.io/v1/domains \
-H "X-API-Key: your_api_key_here"

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.