A ready-to-deploy Express.js server that exposes the governance runtime as an HTTP API. Use this when you want to run governance as a standalone service rather than embedding it in your application.Documentation Index
Fetch the complete documentation index at: https://docs.manthan.systems/llms.txt
Use this file to discover all available pages before exploring further.
Install
Starting the server
API endpoints
| Method | Path | Description |
|---|---|---|
POST | /execute | Execute a governed decision |
POST | /verify | Verify an attestation |
GET | /health | Health check |
GET | /runtime | Runtime manifest |
POST /execute
Request:POST /verify
Request: the full attestation object returned by/execute.
Response:
GET /health
GET /runtime
Returns the runtime manifest -runtimeVersion and runtimeHash.
Using with the SDK client
Use@parmanasystems/sdk-client as the companion HTTP client for this server. It provides typed methods for all endpoints and can verify attestations locally without a round trip.
See also
- SDK Client - typed HTTP client for this server
- Express Integration Guide - embedding governance directly in your app
- Production Checklist