Dashboard

Registered Devices
0

+2 since last month

Webhooks Processed (24h)
128

95% success rate

Notifications Sent (24h)
97

Targeted from 128 webhooks

Registered Devices
A list of all devices registered for push notifications.
DeviceOSStatus
Recent Webhook Activity
A log of the most recent incoming webhooks.
API Endpoints
Use these endpoints to integrate with your application.

Register Device

POST /api/devices/register

curl -X POST \
  https://your-app-url/api/devices/register \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "token": "apns-device-token",
    "deviceInfo": {
      "name": "User's iPhone",
      "os": "iOS 17.5",
      "type": "ios"
    }
  }'

Ingress Webhook

POST /api/webhooks/ingress

curl -X POST \
  https://your-app-url/api/webhooks/ingress \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "event_type": "new_user",
    "user_id": "usr_123",
    "plan": "premium",
    "message": "A new user has signed up!"
  }'