Resolve
The resolve phase finds curiosity-aligned resources that counter burnout drivers. These endpoints identify learning interests from user text, match them to available resources across multiple providers, and filter by time constraints and preferred learning modes. The goal is to surface quick wins that restore purpose and address specific blockers through targeted skill development or knowledge acquisition.
Request
json
curl -X POST https://api.stageonego.com/v1/curiosities/detect \
-H "Authorization: Bearer $STAGEONEGO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "I miss practicing airway skills and learning from sharp attendings. I want quick wins that make shift work feel purposeful.",
"interests": ["airway_management", "clinical_reasoning"],
"time_budget_minutes": 30,
"learning_modes": ["video", "article", "micropractice"]
}'
Response
json
{
"data": {
"curiosity_seeds": [
"airway_sim_microdrills",
"concise_case_breakdowns",
"peer_coaching"
],
"resources": [
{
"title": "Rapid airway micro-drills (7 min)",
"provider": "youtube_learning",
"url": "https://example.com/youtube/airway-microdrills",
"fit_reason": "Matches airway interest and short time budget"
},
{
"title": "Case cards: overnight decision shortcuts",
"provider": "open_access_journals",
"url": "https://example.com/journals/case-cards",
"fit_reason": "Improves clinical reasoning with low time cost"
},
{
"title": "Peer debrief script (10 minutes)",
"provider": "playbook",
"url": "https://example.com/playbooks/peer-debrief",
"fit_reason": "Builds peer support to offset depersonalization"
}
]
},
"meta": {
"request_id": "req_curiosity_123",
"timestamp": "2024-01-15T10:42:00Z"
}
}