Detect
The detect phase scores burnout risk and moderation safety before we suggest pathways. These endpoints analyze short-form text input to identify emotional exhaustion, depersonalization, and personal accomplishment signals aligned with Maslach Burnout Inventory dimensions. They also surface blockers, wellness signals, and protective factors while flagging content that requires moderation or crisis intervention.
Request
json
curl -X POST https://api.stageonego.com/v1/detect \
-H "Authorization: Bearer $STAGEONEGO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "My workload keeps growing and I have no time to recover. I feel numb with patients and my sleep is wrecked."
}'
Response
json
{
"data": {
"burnout_intensity": {
"score": 0.81,
"risk_level": "red",
"trend": "rising",
"dimensions": {
"emotional_exhaustion": 0.86,
"depersonalization": 0.63,
"personal_accomplishment": 0.29
}
},
"symptoms": [
"emotional_fatigue",
"exhaustion",
"cognitive_friction"
],
"incoming_blockers": [
"excessive_workload",
"time_pressure",
"low_control"
],
"model_version": "burnout-l3.1-adapter-v2"
},
"meta": {
"request_id": "req_detect_123",
"timestamp": "2024-01-15T10:35:00Z"
}
}