Documentation

Quick Start

1

Sign up for an account

Create an account to get your API key and start validating emails.

2

Generate an API key

Access your dashboard to generate an API key for authentication.

3

Make your first request

Start validating email addresses using our simple API.

Installation

You can use any HTTP client to make requests to our API. Here are some examples:

cURL

curl -X POST https://mailmorph.com/api/validate \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email": "test@example.com"}'

JavaScript/TypeScript

async function validateEmail(email: string) {
  const response = await fetch('https://mailmorph.com/api/validate', {
    method: 'POST',
    headers: {
      'x-api-key': 'YOUR_API_KEY',
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({ email }),
  });
  return response.json();
}

Rate Limiting

Our API implements rate limiting to ensure fair usage and system stability:

  • 500 requests per minute per API key
  • Rate limit information is included in response headers
  • When limit is exceeded, requests will return 429 status code

Rate Limit Headers

  • X-RateLimit-Limit: Maximum requests per minute (500)
  • X-RateLimit-Remaining: Remaining requests in current window
  • X-RateLimit-Reset: Time in milliseconds until the rate limit resets

Response Format

The API returns JSON responses with the following structure:

{
  "email": "test@example.com",
  "is_temp": false,
  "remaining_credits": 99
}

Error Handling

The API uses conventional HTTP response codes to indicate success or failure:

200

Success

400

Bad Request - Invalid email format

401

Unauthorized - Invalid or missing API key

402

Payment Required - Insufficient credits

429

Too Many Requests - Rate limit exceeded

500

Internal Server Error

Need Help?

If you need any assistance or have questions, please don't hesitate to contact our support team.