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-LimitThe maximum number of requests allowed per minute
X-RateLimit-RemainingThe number of requests remaining in the current time window
X-RateLimit-ResetThe time in milliseconds when the rate limit will reset
{
"email": "test@example.com" // Required
}{
"email": "test@example.com",
"is_temp": false,
"remaining_credits": 99
}400Invalid email format or missing required fields401Invalid or missing API key402Insufficient credits429Rate limit exceeded500Internal 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.