The email API for developers. Send transactional emails from your applications with a simple REST API.
Send your first email in under 5 minutes. Here's how:
Create an API key from your Settings → API Keys page.
Make a POST request to send an email:
curl -X POST https://app.notifyn.net/api/v1/emails \
-H "Authorization: Bearer ntfn_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"to": "recipient@example.com",
"subject": "Hello from Notify\'n!",
"html": "<h1>Welcome!</h1><p>This is your first email.</p>"
}'A successful response returns the email ID:
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"message": "Email sent successfully"
}All API requests should be made to:
Authenticate your API requests by including your API key in the Authorization header:
Authorization: Bearer ntfn_your_api_keyNever expose your API keys in client-side code or public repositories. Use environment variables to store them securely.
/api/v1/emailsGet information about your organization and API key.
Get started quickly with examples in your favorite language:
Our team is here to help you integrate the Notify'n API.