Read-only REST API for integrating aiteam data into your tools and dashboards.
Include your API key in the Authorization header of every request:
Authorization: Bearer aiteam_your_api_key_here
Generate API keys from Settings > API Keys in your dashboard.
Base URL: https://aite.am
List all assessments with scores, dimension breakdowns, and maturity levels.
{
"data": [
{
"id": "uuid",
"title": "AI Readiness Assessment",
"status": "completed",
"score": 72,
"dimension_scores": { "strategy": 80, "technology": 65, ... },
"maturity_level": "defined",
"scored_at": "2026-03-15T10:00:00Z"
}
],
"total": 1
}List all registered AI agents with status and EU AI Act risk classification.
{
"data": [
{
"id": "uuid",
"name": "Customer Support Bot",
"vendor": "OpenAI",
"status": "active",
"autonomy_level": "collaborator",
"eu_risk_classification": "limited",
"conformity_status": "completed"
}
],
"total": 1
}Get adoption metrics and AI tool usage summary.
{
"data": {
"metrics": [...],
"tool_usage_summary": {
"total_tracked_users": 150,
"active_users": 98,
"adoption_rate": 65
}
}
}Get business metrics with baseline and current values.
{
"data": [
{
"id": "uuid",
"metric_name": "Support tickets resolved",
"category": "support",
"unit": "count",
"baseline_value": 100,
"current_value": 145,
"entry_count": 12
}
],
"total": 1
}Get overall compliance posture including risk classification, obligations, and literacy tracking.
{
"data": {
"overall_compliance_score": 78,
"risk_classification": {
"high": 2, "limited": 5, "minimal": 8
},
"deployer_obligations": {
"total": 8, "completed": 5, "in_progress": 2
},
"ai_literacy": { "total": 50, "completed": 35 }
}
}List tasks with optional status and priority filters. Supports pagination via limit and offset.
{
"data": [
{
"id": "uuid",
"title": "Review AI governance policy",
"status": "todo",
"priority": "high",
"due_date": "2026-04-01",
"source": "assessment"
}
],
"total": 15,
"limit": 50,
"offset": 0
}List team members with roles and departments. Email addresses are not exposed.
{
"data": [
{
"id": "uuid",
"name": "Jane Doe",
"org_role": "admin",
"function_role": "technology",
"department": "Engineering"
}
],
"total": 10
}Rate limit: 100 requests per minute per API key. All responses are JSON.