REST API
Overview
Server-to-server REST API for integrating with starti.app. Requires an API key from the starti.app manager.
Base URL
https://api.starti.app/v1Authentication
All requests must include an API key in the x-api-key header and set Content-Type to application/json.
You can obtain your API key from the starti.app manager.
curl -X POST \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
https://api.starti.app/v1/...Errors
| Status | Description |
|---|---|
400 Bad Request | The request body failed validation. The response includes an issues array with details. |
401 Unauthorized | The API key is missing or invalid. |
User
Manage user identity within the app. Register a user ID to associate the current device with a known user, unregister on logout, and let users request account deletion. The user ID is persisted in localStorage so it survives page reloads.
Push Notifications
Send push notifications and badge updates to users or topics.