https://mailmorph.com
All API requests should be made to this base URL.
All API endpoints require authentication using an API key. Include your API key in the request headers:
x-api-key: YOUR_API_KEY
The API is rate-limited to 500 requests per minute per API key. Monitor the rate limit headers in responses to avoid hitting limits.
X-RateLimit-Limit
The maximum number of requests allowed per minute
X-RateLimit-Remaining
The number of requests remaining in the current time window
X-RateLimit-Reset
The time in milliseconds when the rate limit will reset
{ "email": "test@example.com" // Required }
{ "email": "test@example.com", "is_temp": false, "remaining_credits": 99 }
400
Invalid email format or missing required fields401
Invalid or missing API key402
Insufficient credits429
Rate limit exceeded500
Internal server errorcurl -X POST https://mailmorph.com/api/validate \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"email": "test@example.com"}'
Ready to start using our API? Sign up for an account to get your API key and free credits.