Read the admin console dashboard snapshot
Returns the aggregate platform figures rendered on the admin console home. Platform admins only; a caller with no admin record, or with an unverified email address, is refused.
Authorization
apiKey Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.
In: header
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/admin/dashboard"{ "data": { "generatedAt": "string", "metrics": { "activeFlags": 0, "activeExperiments": 0, "activeRollouts": 0, "failedRuns24h": 0, "affectedWorkspaces": 0, "auditWarnings24h": 0 }, "flags": [ { "id": "string", "key": "string", "name": "string", "description": "string", "owner": "string", "category": "string", "controlType": "release", "registered": true, "status": "enabled", "rollout": 0, "environment": "development", "target": "string", "changedBy": "string", "changedAt": "string", "risk": "low", "linkedExperimentId": "string" } ], "experiments": [ { "id": "string", "name": "string", "hypothesis": "string", "targetType": "flag", "targetKey": "string", "assignmentUnit": "workspace", "status": "draft", "flagKey": "string", "audience": "string", "allocation": 0, "primaryMetric": "string", "guardrailMetric": "string", "startedAt": "string", "endsAt": "string", "winner": "string", "variants": [ { "id": "string", "label": "string", "split": 0, "exposures": 0, "conversionRate": 0, "errorRate": 0 } ] } ], "segments": [ { "id": "string", "name": "string", "description": "string", "rules": [ "string" ], "matches": 0, "usedBy": [ "string" ] } ], "auditEvents": [ { "id": "string", "actor": "string", "action": "string", "resource": "string", "summary": "string", "createdAt": "string", "severity": "info" } ], "runs": [ { "id": "string", "kind": "action", "label": "string", "status": "completed", "workspace": "string", "durationMs": 0, "startedAt": "string", "error": "string" } ], "policies": [ { "id": "string", "name": "string", "description": "string", "enabled": true, "appliesTo": "string" } ], "admins": [ { "id": "string", "email": "string", "displayName": "string", "role": "owner", "status": "active", "createdAt": "string", "activatedAt": "string" } ] }}{ "_tag": "ApiNotFound", "error": "not_found", "message": "That item does not exist, or this key cannot see it.", "status": 404}{ "_tag": "ApiNotFound", "error": "not_found", "message": "That item does not exist, or this key cannot see it.", "status": 404}Read the caller's bootstrap and admin state
Returns whether bootstrap is still open, the caller's email, and the caller's admin record once one exists. While bootstrap is open it answers without an admin check; afterwards the caller must be a platform admin with a verified email address.
List the registered feature flags
Returns every feature flag registered in product code together with its current rollout state and segment targeting. Platform admins only.