Skip to main content
ManticScore sends push notifications to your devices when key events happen — research completes, a build graph is ready, a new competitive signal arrives, or your weekly digest is available. You control which events trigger alerts and can register multiple devices.

Register a device

When your app starts, register the device’s APNS token so ManticScore knows where to send notifications.
Response:
environment accepts production, development, or sandbox. Use development during local testing with a debug build. The request upserts — calling it again with the same token is safe.

Remove a device

When a user logs out or uninstalls the app, remove their device token:

Notification preferences

View current preferences

Update a preference

Response:

Reset a preference to default

Personal push URL

ManticScore provides a curl-able push URL you can use to send yourself a notification from any script, CI pipeline, or terminal.

Mint a URL

Each call to GET /v1/notify/me rotates the slug. The previous URL stops working immediately. Save the URL after minting it rather than calling this endpoint each time you want to send a notification.

Send a notification

Response:
The notification body can be up to 1,024 bytes. The rate limit is 3 notifications per minute per slug. Example with curl:
No Authorization header is required — the slug itself is the credential.
Store your slug in a CI secret (e.g. MANTICSCORE_NOTIFY_SLUG) and call it from your deployment workflow to get a push notification when jobs complete.