Quickstart
Use the burnout prediction API with deterministic JSON responses. Low latency, strict schemas.
cURL
curl -X POST https://api.stageonego.com/v1/predict \
-H "Authorization: Bearer $STAGEONEGO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "I've been working 80-hour weeks for the past three months. Every morning I wake up dreading going in. The patients deserve better care than I can give right now, but I don't have time to think through cases properly. My attendings are supportive but the system feels broken. I used to love this work."
}'Example Response
Response
{
"data": {
"burnout_intensity": {
"score": 0.84,
"risk_level": "red",
"trend": "rising"
},
"symptoms": [
"emotional_fatigue",
"exhaustion",
"cognitive_friction"
],
"incoming_blockers": [
"excessive_workload",
"time_pressure",
"systemic_constraints"
]
},
"meta": {
"request_id": "req_abc123",
"timestamp": "2024-01-15T10:30:00Z"
}
}Key Endpoints
POST /v1/predict— full burnout analysisPOST /v1/detect/blockers— blocker extraction onlyPOST /v1/detect/symptoms— symptom extraction onlyPOST /v1/analyze/trends— multi-point trend analysis