Overview
When to use the signed Operator API
Most operators can run Phoenix Prediction through the hosted iframe and admin dashboard. The Operator API is available when your backend needs direct, signed access to operator-scoped market data and actions.
The base path is:
https://prediction.phoenixverse.io/operator/apiEvery request is scoped to the authenticated operator. You cannot read or mutate another operator's data through this API.
Available Areas
| Area | Endpoints |
|---|---|
| Templates | Create and manage reusable market templates |
| Series | Create and manage recurring market series |
| Markets | List, inspect, close, and resolve markets |
| Stats | Read operator summary statistics |
| Settings | Read and update tenant-scoped settings |
| Categories | Read platform taxonomy |
OpenAPI is available from:
https://prediction.phoenixverse.io/api/openapi.jsonSwagger UI is available from:
https://prediction.phoenixverse.io/api/docsAuthentication
The Operator API uses Ed25519 request signatures. It does not use shared secrets.
Required headers:
X-Operator-Code: acme
X-Signature-Timestamp: 1779100000
X-Signature: base64url-ed25519-signatureSee Request Signing for the canonical payload.