Integrate constitutional AI governance in minutes, not months.
A single API call evaluates any AI agent action against all 792 AGS v2.1 governance dimensions.
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 -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.
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. |
Language SDKs are in progress. Everything is available today over the REST API above.
The AGS v2.1 standard is maintained by AgentGoverning, our open standards initiative for AI agent governance (by Imperium Business Intelligence).
agentgoverning.com →