Push notifications, without the plumbing.

One API for iOS (APNs), Android (FCM v1), and Web Push. We handle token auth, payload encryption, retries, and delivery tracking — you call one endpoint.

iOS · APNs

HTTP/2 + ES256 token auth. Sandbox + production endpoints. Per-app credentials.

Android · FCM v1

Google service-account OAuth, tokens cached. Multi-platform message shape for unified payloads.

Web Push · RFC 8291

VAPID + aes128gcm payload encryption. Per-tenant VAPID keys. Works on every modern browser.

POST /api/v1/notifications
$ curl -X POST https://nitroping.dev/api/v1/notifications \
    -H "Authorization: ApiKey np_..." \
    -H "Content-Type: application/json" \
    -d '{"title": "hi", "body": "👋", "target": {"all": true}}'

$ 201 Created · queued
$ delivery_log: 1.2M sent · 0.03% bounce · 14ms p95