Read-only REST API voor het integreren van aiteam-gegevens in uw tools en dashboards.
Neem uw API-sleutel op in de Authorization-header van elk verzoek:
Authorization: Bearer aiteam_your_api_key_here
Genereer API-sleutels via Instellingen > API Keys in uw dashboard.
Basis-URL: https://aite.am
Toon alle assessments met scores, dimensie-uitsplitsingen en volwassenheidsniveaus.
{
"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
}Toon alle geregistreerde AI-agents met status en EU AI Act-risicoclassificatie.
{
"data": [
{
"id": "uuid",
"name": "Customer Support Bot",
"vendor": "OpenAI",
"status": "active",
"autonomy_level": "collaborator",
"eu_risk_classification": "limited",
"conformity_status": "completed"
}
],
"total": 1
}Haal adoptiestatistieken en AI-toolgebruiksoverzicht op.
{
"data": {
"metrics": [...],
"tool_usage_summary": {
"total_tracked_users": 150,
"active_users": 98,
"adoption_rate": 65
}
}
}Haal bedrijfsstatistieken op met basis- en huidige waarden.
{
"data": [
{
"id": "uuid",
"metric_name": "Support tickets resolved",
"category": "support",
"unit": "count",
"baseline_value": 100,
"current_value": 145,
"entry_count": 12
}
],
"total": 1
}Haal totale compliancestatus op inclusief risicoclassificatie, verplichtingen en geletterdheidstracking.
{
"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 }
}
}Toon taken met optionele status- en prioriteitsfilters. Ondersteunt paginering via limit en 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
}Toon teamleden met rollen en afdelingen. E-mailadressen worden niet getoond.
{
"data": [
{
"id": "uuid",
"name": "Jane Doe",
"org_role": "admin",
"function_role": "technology",
"department": "Engineering"
}
],
"total": 10
}Snelheidslimiet: 100 verzoeken per minuut per API-sleutel. Alle antwoorden zijn in JSON-formaat.