1https://usescrubs.com
1curl --location 'https://usescrubs.com/api/v1/summarisation/soap' \
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 "transcript": "Hi, doctor, I have been having a headache for the past 1 week ..."
7}'
1{
2 "summary": "**Subjective:**\n1. Chief complaint: Headache for the past 1 week.\n2. ..."
3}
1https://usescrubs.com
1curl --location 'https://usescrubs.com/api/v1/summarisation/pvs' \
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 "transcript":"Hi, doctor, I have been having a headache for the past 1 week ...",
7 "summary":"Patient reports having a headache for the past week ..."
8}'
1{
2 "pvs": "**Visit Summary:**\nDuring your visit today, we discussed ..."
3}