Base URL
Console endpoints
GET /console
Returns the admin console HTML page. The page is a self-contained single-page React application with no external dependencies.
Response: text/html
GET /console/assets/console-app.js
Returns the console React bundle as JavaScript.
Response: application/javascript
GET /console/assets/console-app.css
Returns the console stylesheet.
Response: text/css
JSON API endpoints
GET /console/experience
Returns experience metadata describing the current runtime state. This is the primary data source for the console UI.
Response:
console_config, the view-level contract consumed by the bundled console.
GET /console/modules
Returns the list of loaded modules.
Response:
GET /console/identities
Returns identity-first records and inspection metadata when an identity runtime is configured.
Response: JSON object containing identity records and affordances.
GET /console/timeline
Returns console timeline frames from the MobKit console log store. This endpoint is the REST equivalent of mobkit/console/query_timeline.
Query parameters
Query parameters
next_cursor is safe to use as the next after cursor for since pagination; latest_cursor is the latest cursor for the target window and is useful for live continuation after a recent seed.
GET /console/timeline/stream
Streams a bounded timeline replay followed by live console frames. It accepts the same query parameters as GET /console/timeline and returns text/event-stream.
If the requested cursor can no longer be replayed, the route returns HTTP 409 with {"error":"replay_unavailable"} and cursor context. Clients should refetch a recent page and resume from latest_cursor.
GET /console/identity/{identity}/stream
Identity-filtered convenience route for the same console timeline stream. It sets the identity filter from the path and accepts the remaining timeline query parameters.
POST /console/send
Legacy console send route backed by the console aggregator. New clients should prefer POST /console/rpc with mobkit/console/send.
POST /console/rpc
JSON-RPC 2.0 endpoint for console and runtime operations.
POST /console/rpc/multipart
Multipart JSON-RPC endpoint. Supported methods:
Multipart image uploads are bounded by the server-side image count and byte limits.
GET /blobs/{blob_id}
Returns blob/image content by ID when a blob store is configured.
Authentication
WhenConsolePolicy.require_app_auth is true, all endpoints require a valid JWT token in the Authorization header:
ConsolePolicy.read_only to true to serve the console in view-only mode.
Read endpoints and streams remain available, while mutating JSON-RPC methods
such as mobkit/console/send, mobkit/blob/upload, lifecycle controls, gating
decisions, and metadata writes are omitted from mobkit/capabilities and return
a read-only error if called directly.
Error responses
API errors return standard HTTP status codes with a JSON body:See also
- JSON-RPC — full programmatic API
- SSE API — event streaming protocol
- Console guide — admin console details
