One API for agent governance.

Integrate constitutional AI governance in minutes, not months.

Quick Start

Up and Running in Minutes

A single API call evaluates any AI agent action against all 792 AGS v2.1 governance dimensions.

cURL — list the live governance dimensions (public, no key)
curl https://app.agentshield.online/v1/dimensions

# {"total": 783, "ags_version": "v2.1", "dimensions": [
#   {"id": "AG-001", "name": "Operational Boundary Enforcement",
#    "landscape": "Group A", "tier": "Universal/Core",
#    "control_type": "Preventive", "audit_type": "BOTH"}, ... ]}
cURL — evaluate an agent action (requires an API key)
curl -X POST https://app.agentshield.online/v1/evaluate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "agent-001",
    "action": {
      "type": "data_access",
      "target": "customer_records",
      "intent": "generate quarterly report"
    }
  }'

# Returns the governance decision, a score, and the dimension breakdown.
Key Endpoints

API Reference

All endpoints require Authorization: Bearer <api_key>. /v1/dimensions is public.

Method Endpoint Description
POST /v1/evaluate Evaluate an agent action against all 792 AGS v2.1 dimensions. Returns governance decision, score, and full dimension breakdown.
GET /v1/agent/{id}/score Retrieve the current aggregate governance score for a specific agent, including historical trend data.
GET /v1/lockdown/status Check the current lockdown status across all governed agents. Returns active lockdowns and trigger conditions.
GET /v1/dimensions List all 792 AGS v2.1 governance dimensions with descriptions, weights, and current evaluation criteria.
SDKs

Language SDKs

Language SDKs are in progress. Everything is available today over the REST API above.

Python
Coming soon
TypeScript
Coming soon
Go
Coming soon
Rust
Coming soon
Node.js
Coming soon
MCP
Coming soon

The AGS v2.1 standard is maintained by AgentGoverning, our open standards initiative for AI agent governance (by Imperium Business Intelligence).

agentgoverning.com →
↑ Top