Return the Trust Dashboard for the authenticated user’s team.
Aggregates:
curl --request GET \
--url https://api.example.com/v1/dashboard/trust{
"time_to_trust": {
"average_days": 123,
"trend_pct": 123,
"recovery_avg_days": 123
},
"fleet_health": {
"by_stage": {},
"under_attack": 0
},
"adaptivity": {
"acceptance_rate": 123,
"proposed": 0,
"merged": 0,
"trend_pct": 123
},
"agents": [
{
"id": "<string>",
"name": "<string>",
"stage": "registered",
"trust_scores": {},
"trust_breakdown": {},
"redteam_findings_by_category": {},
"under_attack": false,
"pending_prs": 0,
"evaluating": false,
"darwin_cycles": 0,
"time_in_stage_hours": 0,
"ttt_days": 123,
"dome_protected": false,
"owner_name": "<string>"
}
]
}Successful Response
Full dashboard API response.
Hide child attributes
Trust maturity stages for the Kanban board.
Agents flow left-to-right as they mature: Registered -> Tested -> Hardened -> Trusted -> Optimized -> Adapted
registered, tested, hardened, trusted, optimized, adapted Was this page helpful?
curl --request GET \
--url https://api.example.com/v1/dashboard/trust{
"time_to_trust": {
"average_days": 123,
"trend_pct": 123,
"recovery_avg_days": 123
},
"fleet_health": {
"by_stage": {},
"under_attack": 0
},
"adaptivity": {
"acceptance_rate": 123,
"proposed": 0,
"merged": 0,
"trend_pct": 123
},
"agents": [
{
"id": "<string>",
"name": "<string>",
"stage": "registered",
"trust_scores": {},
"trust_breakdown": {},
"redteam_findings_by_category": {},
"under_attack": false,
"pending_prs": 0,
"evaluating": false,
"darwin_cycles": 0,
"time_in_stage_hours": 0,
"ttt_days": 123,
"dome_protected": false,
"owner_name": "<string>"
}
]
}