AIRG
DEVELOPERS|
CHECKING...
AI RUNTIME GOVERNOR

Developer Platform

Runtime governance for autonomous AI agents. Intercept every tool call. Enforce policies. Detect threats. Ship safely.

Read the DocsTry API ExplorerGitHub ↗
API Endpoints
...
REST + SSE
Evaluation Layers
6
Kill switch → Verification
Auth Methods
3
JWT, API Key, Query Param
Compliance Frameworks
3
EU AI Act, NIST, OWASP
QUICK START

Govern your first tool call

Install an SDK or use cURL directly. Every tool call evaluation returns a decision (allow/review/block), a risk score, and a full explanation.

from airg import GovernorClient

client = GovernorClient(
    base_url="https://api.airg.nov-tia.com",
    api_key="airg_your_key_here"
)

result = client.evaluate(
    tool="shell",
    args={"command": "rm -rf /"},
    context={"agent_id": "my-agent"}
)

print(result.decision)   # "block"
print(result.risk_score) # 95
RESOURCES

Everything you need

📖
API Reference
Complete guide with code samples for authentication, evaluation, policies, tracing, and compliance.
View docs →
Live
Interactive Explorer
Try any endpoint from your browser with the Scalar-powered interactive API explorer.
View docs →
🚀
Getting Started
Step-by-step guide from signup to your first governed tool call in under 5 minutes.
View docs →
🛡
Policy Management
Create, version, and audit custom policies. Import/export policy bundles across environments.
View docs →
📡
Real-Time Streaming
Server-Sent Events for live governance decisions. Build monitoring dashboards and alert systems.
View docs →
💎
SURGE Receipts
Cryptographic governance receipts with Merkle audit trails for tamper-proof compliance evidence.
View docs →
SDKS

Official client libraries

🐍stable
Python
pip install airg-client
📘stable
TypeScript
npm install @airg/governor-client
beta
Java
dev.airg:governor-client
PRODUCTION BASE URL
https://api.airg.nov-tia.com
Swagger UI ↗OpenAPI Spec ↗