Ecosystem
Seven strategic products that extend the core platform — from free risk tooling and open source SDKs to certification, APIs, and insurer partnerships.
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.
/v1/checkCheck if an action is compliant in a jurisdiction
/v1/regulationsList regulations by jurisdiction and industry
/v1/regulations/:id/requirementsSpecific requirements for a regulation
/v1/risk-scoreCalculate risk score for an agent configuration
Free
$0
100 calls / day
Developer
$99/mo
10,000 calls / month
Enterprise
$999/mo
Unlimited + SLA
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"}'