Build with Governum API
Integrate EU AI Act compliance directly into your workflows with our comprehensive REST API, SDKs, and developer tools.
curl -X POST https://api.governum.ai/v1/systems \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Credit Scoring Model",
"description": "ML model for creditworthiness",
"risk_category": "high",
"annex_iii_reference": "5(b)"
}'
Get Started in Minutes
Three simple steps to integrate Governum into your application
Get Your API Key
Sign up for a Governum account and generate your API key from the dashboard.
export GOVERNUM_API_KEY="gvnm_..."
Install the SDK
Install our Python SDK or use the REST API directly from any language.
pip install governum
Make Your First Request
Start managing AI systems and compliance workflows programmatically.
from governum import Client
client = Client()
client.systems.list()
API Reference
Complete REST API endpoints for EU AI Act compliance management
AI Systems
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/systems |
List all registered AI systems |
| POST | /v1/systems |
Register a new AI system |
| GET | /v1/systems/{id} |
Get AI system details |
| PATCH | /v1/systems/{id} |
Update AI system |
| DELETE | /v1/systems/{id} |
Archive AI system |
Risk Classification
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/systems/{id}/classify |
Run automated risk classification |
| GET | /v1/systems/{id}/classification |
Get current risk classification |
| GET | /v1/annex-iii |
List Annex III high-risk categories |
Documentation
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/systems/{id}/documents |
Generate compliance documentation |
| GET | /v1/systems/{id}/documents |
List all documents |
| GET | /v1/systems/{id}/documents/{doc_id} |
Download specific document |
SDKs & Tools
Choose your preferred language and integration method
Python SDK
Official Python library with full API coverage
pip install governum
CLI Tool
Command-line interface for CI/CD pipelines
brew install governum-cli
REST API
Language-agnostic REST endpoints
api.governum.ai/v1
Webhooks
Real-time event notifications
POST /webhooks
Ready to Build?
Get started with our API today and automate your EU AI Act compliance workflows.