You're one of the first teams to govern AI with autonomous intelligence.
Everything you need to ship compliant AI systems, with a direct line to the team building the platform.
500 requests/min, every compliance framework, priority support queue -- all free for the duration of the beta.
Private Slack channel and direct access to the founding engineering team. No ticket queues.
Your feedback goes straight into the roadmap. Request features, flag gaps, influence priorities.
Featured case study and your logo on the GovernLayer site at general availability.
Five commands to your first autonomous governance check. Every request below uses your real beta environment.
curl -X POST https://web-production-bdd26.up.railway.app/auth/register \
-H "Content-Type: application/json" \
-d '{
"username": "your-team",
"password": "a-strong-password"
}'
curl -X POST https://web-production-bdd26.up.railway.app/v1/enterprise/orgs \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Your Company",
"slug": "your-company",
"plan": "pro"
}'
curl -X POST https://web-production-bdd26.up.railway.app/v1/enterprise/orgs/your-company/api-keys \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "beta-key",
"scopes": ["govern", "audit", "risk", "scan"]
}'
curl -X POST https://web-production-bdd26.up.railway.app/v1/govern \
-H "X-API-Key: gl_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"system_name": "my-ai-assistant",
"behavior_description": "Customer-facing chatbot for insurance claims",
"safety_manifold": "Must not provide medical or legal advice"
}'
curl https://web-production-bdd26.up.railway.app/ledger \
-H "X-API-Key: gl_YOUR_API_KEY"
Integrate GovernLayer into your Python services in under a minute.
pip install governlayer
from governlayer import GovernLayer
gl = GovernLayer(api_key="gl_YOUR_API_KEY")
result = gl.govern(
system_name="my-ai-assistant",
behavior_description="Customer-facing chatbot for insurance claims",
safety_manifold="Must not provide medical or legal advice"
)
print(result.decision) # "COMPLIANT" | "REVIEW" | "NON_COMPLIANT"
print(result.risk_score) # 0.0 - 1.0
print(result.ledger_hash) # SHA-256 audit chain hash
The core API surface. All endpoints accept JSON and return JSON. Authenticate with your API key via the X-API-Key header.
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/govern | Full governance pipeline -- drift, risk, decision, audit, ledger |
| POST | /v1/scan | Quick deterministic scan (no LLM, instant results) |
| POST | /v1/drift | Behavioral drift detection via embedding analysis |
| POST | /v1/risk | 6-dimension deterministic risk scoring |
| GET | /v1/controls | Control monitoring and status |
| GET | /v1/evidence/connectors | Evidence collection connectors |
| GET | /v1/compliance/programs | Compliance programs and frameworks |
One week from onboarding to full AI governance. We move fast.
Create your account, generate API keys, and run your first governance check on a production AI system. Under 10 minutes to value.
Integrate the Python SDK into your workflow. Set up drift monitoring and compliance auditing across your AI stack.
30-minute call to review results, collect feedback, and align on next steps. By Friday, full AI governance is running.
The good, the broken, the "I wish it did this." This beta exists because of you. Use the private Slack channel or reach us directly.
beta@governlayer.aiIf your question isn't here, ask us in Slack. We typically respond within the hour.