Skip to main content
GET
/
v1
/
dashboard
/
trust
Get Trust Dashboard
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>"
    }
  ]
}

Response

200 - application/json

Successful Response

Full dashboard API response.

time_to_trust
TimeToTrustMetrics · object

Time-to-Trust hero metric.

fleet_health
FleetHealthMetrics · object

Fleet Health hero metric.

adaptivity
AdaptivityMetrics · object

Adaptivity hero metric.

agents
AgentTrustCard · object[]
Last modified on April 21, 2026