Introduction
Welcome to NotiGrid documentation
Welcome to NotiGrid
NotiGrid is a unified notification API that simplifies how developers send alerts across multiple channels. One integration, infinite possibilities.
What is NotiGrid?
NotiGrid is a notification infrastructure platform that enables you to:
- Send notifications via Email, SMS, Push, Slack, and Webhooks
- Manage notification templates with Handlebars
- Track delivery status and engagement
- Scale from 100 to 100,000+ notifications seamlessly
Key Features
Unified API
Send notifications to any channel with a single POST request. No need to integrate with multiple SDKs or manage different credentials.
Template System
Create reusable message templates with variables. Update once, use everywhere across all channels.
Delivery Tracking
Complete audit trail with status, timestamps, and delivery confirmations stored for debugging and analytics.
Multi-tenancy
Built-in support for organizations, projects, and team management with role-based access control.
Quick Example
curl -X POST https://api.notigrid.com/v1/notify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"template": "user_signup",
"channel": "email",
"variables": {
"email": "user@example.com",
"name": "John Doe"
}
}'