Skip to content

API reference · direct surfaces

Drop the SDK if you want.

REST and gRPC surfaces for every Intended capability. OpenAPI + protobuf schemas are published in the open-source repo. The SDKs are wrappers; this is the wire.

02 · Authority decision

bash
curl -X POST https://api.intended.so/v1/authority/decide \
  -H "Authorization: Bearer $INTENDED_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "action": "sdlc.deploy.production",
    "actor": "ops@acme-corp.io",
    "context": { "target": "auth-svc", "environment": "production" }
  }'

Response is a verdict + (on ALLOW) an Authority Token + gate-trace. Engineered for a sub-100ms p99 design target.

03 · Surfaces

01 · Gateway

OpenAI-compatible

Drop-in replacement for OpenAI base URL. Anthropic, NIM, Bedrock, Vertex all supported.

02 · Authority

Decision + token mint

POST /v1/authority/decide. Returns verdict, gate-trace, and (on ALLOW) the Ed25519 Authority Token.

03 · Audit

Chain read + export

GET /v1/audit/chain. Hash-linked envelopes; cryptographically signed and replayable. Per-tenant JWKS verification is live.

04 · JWKS

Public key set

GET /.well-known/jwks.json. Connectors verify tokens against kid-pinned tenant public keys — no Intended online required. A per-tenant authority JWKS route is live.

API Reference — Intended | Intended