Ecosystem

The AgentCompliant Ecosystem — Beyond governance. The standard.

Seven strategic products that extend the core platform — from free risk tooling and open source SDKs to certification, APIs, and insurer partnerships.

DEVELOPER API

Is this action compliant? Ask our API. Get an answer in 50ms.

A standalone HTTP surface for regulation-aware checks — use it from any runtime, pipeline, or partner product. Same philosophy as the Comply engine: dynamic rules, not hardcoded strings in your app.

Endpoints preview

POST/v1/check

Check if an action is compliant in a jurisdiction

GET/v1/regulations

List regulations by jurisdiction and industry

GET/v1/regulations/:id/requirements

Specific requirements for a regulation

POST/v1/risk-score

Calculate risk score for an agent configuration

Pricing

Free

$0

100 calls / day

Developer

$99/mo

10,000 calls / month

Enterprise

$999/mo

Unlimited + SLA

Use cases

  • /Embed compliance checks in your CI/CD pipeline — block merges that violate mapped rules
  • /Pre-flight check before agent deployment — same contracts the Comply engine uses
  • /Real-time compliance validation in production — low-latency guardrails at the edge

Code examples

Node.js

const res = await fetch("https://api.agentcompliant.ai/v1/check", {
  method: "POST",
  headers: {
    "Authorization": "Bearer ac_live_xxx",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    jurisdiction: "US-CA",
    industry: "financial",
    action_type: "data_access",
    agent_id: "agt_123",
  }),
});
const data = await res.json();

Python

import requests

r = requests.post(
    "https://api.agentcompliant.ai/v1/check",
    headers={"Authorization": "Bearer ac_live_xxx"},
    json={
        "jurisdiction": "EU",
        "industry": "healthcare",
        "action_type": "phi_summary",
        "agent_id": "agt_123",
    },
    timeout=10,
)
print(r.json())

cURL

curl -sS -X POST https://api.agentcompliant.ai/v1/check \
  -H "Authorization: Bearer ac_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{"jurisdiction":"US-NY","industry":"legal","action_type":"doc_draft","agent_id":"agt_123"}'

Get your API key

Issue keys from the dashboard with org-scoped scopes and rotation.

Open API keys

← Ecosystem hub