1https://usescrubs.com
1curl --location 'https://usescrubs.com/api/v1/ddx' \
2--header 'X-Scrubs-HCI-Code: 00A123' \
3--header 'X-Scrubs-HCI-Provider: SAMPLE_EHR_1' \
4--header 'Content-Type: application/json' \
5--data '{
6 "summary": "Patient reports having a headache for the past week ...",
7 "additionalPatientInfo": "Patient previously diagnosed with Anxiety Disorder",
8 "numDdx": 2,
9 "explanation": true,
10 "recommendations": true
11}'
1{
2 "diagnosis": [
3 {
4 "diagnosis": "Tension Headache",
5 "explanation": "The patient's headache presentation, ...",
6 "recommendations": "Continue symptomatic management with ..."
7 },
8 {
9 "diagnosis": "Migraine Headache",
10 "explanation": "The patient's description of ...",
11 "recommendations": "Prescribe triptans for ..."
12 },
13 ]
14}