Get SLA dashboard
Retrieve SLA metrics and status. Available for Startup tier and above.
Includes:
- Current uptime percentage
- Response time metrics (P50, P95, P99)
- Incident history
- Compliance status
GET
/sla/dashboard
curl \
--request GET 'https://api.plimverai.tech/sla/dashboard' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"tier": "startup",
"sla_target": 99.0,
"current_uptime": 99.92,
"response_times": {
"p50": 150,
"p95": 380,
"p99": 520
},
"incidents": [
{
"id": "string",
"start_time": "2025-05-04T09:42:00Z",
"end_time": "2025-05-04T09:42:00Z",
"impact": "low",
"resolved": true
}
]
}
Response examples (401)
{
"code": "UNAUTHORIZED",
"status": "error",
"message": "Invalid API key"
}
Response examples (403)
{
"status": "error",
"message": "Invalid model specified",
"code": "INVALID_MODEL",
"details": {}
}