Skip to content

HTTP API

160 operations across 123 paths. This page is the shape they all share; the groups in the sidebar are the operations themselves, each with what it does and what it returns.

The OpenAPI document is published as /openapi/agentprism.json — load it into Scalar, Swagger UI, Postman, or a client generator.

Generated operation pages use {prefix}. Replace it with the value passed to MapAgentPrism; the project template uses /agentprism.

app.MapAgentPrism("/agentprism");

The management API (/api/*) drives the control plane: agents, runs, sessions, skills, workflows, evals, experiments, jobs, and governance.

OpenAI-compatible endpoints (/v1/*) let an OpenAI client talk to your agents with the familiar request and streaming formats. Configure its base URL and authentication, and set model to the agent name — which provider model the agent calls is server-side policy. See the OpenAI API guide for copyable clients and the compatibility boundary.

A bearer token in the Authorization header, holding either the configured static token or an API key. See securing the endpoints for the layers and how scopes narrow roles.

{prefix}/api/meta answers without authentication — the console needs to learn which method to present. It returns nothing sensitive.

Run endpoints answer with text/event-stream, one frame per run event, and the first frame reports the run id.

Terminal window
curl -N -X POST http://localhost:5081/agentprism/api/agents/support/run \
-H 'Content-Type: application/json' \
-d '{"message":"Where is order 4182?"}'

Two headers change the shape:

Header Effect
Idempotency-Key One JSON response instead of a stream — a replay cannot be rebuilt from a stream
Prefer: respond-async 202 Accepted plus a Location header; poll the job

List endpoints that page use skip and take. skip defaults to 0, take to 50, and take is clamped to 1..200 rather than rejected — an out-of-range value never fails a request.

Ordering is usually newest first, which means an item can move between pages while a client is paging. Use the id as identity, never the position.

Some lists are deliberately not paged — agents, skills, quotas, retention policies — because their size is bounded by configuration rather than by traffic.

Failures are application/problem+json with a title and a detail. Two conventions run through the whole API:

A resource you may not see is reported as 404, not 403. Another tenant’s run, session, or conversation is reported as missing, so the API does not confirm that it exists.

Error text is English and is not translated. The same failure has to read the same way in a log, a test, and a support ticket. The console translates its own labels and shows server text as it is.

Status Means
400 The request is malformed or fails validation
401 Missing or invalid credentials
403 Authenticated, but not allowed — including the loopback restriction
404 Not found, or not yours
409 Conflicting state — a name in use, a running experiment, a code-defined agent
422 A content guard blocked the content
429 A quota or rate limit was exceeded
501 The capability is not registered — the workflow engine, voice, or knowledge

501 is worth its own note: it means “this build does not have that package wired up”, which is a different problem from a wrong address, and the API says so rather than answering 404.

Pick one from the sidebar. Each operation shows every declared media type, parameters, responses, and response headers. HTTP schemas expands all 226 request and response contracts with required fields, defaults, and validation constraints from the OpenAPI snapshot.

The AgentPrism packages do not generate the OpenAPI document themselves — they carry route metadata, and your own AddOpenApi() call produces the document. Taking an OpenAPI dependency would force it, and its transitive CVE exposure, onto every consumer.

The consequence: the title, version, and server list in the published snapshot come from the host that generated it. In your document they come from your application. The paths, schemas, and descriptions are the same.