Notes Create Note Creates a new note POST https://api.sully.ai / v1 / notes Try it cURL Python JavaScript PHP Go Java Copy curl --request POST \ --url https://api.sully.ai/v1/notes \ --h
curl --request POST \
--url https://api.sully.ai/v1/notes \
--header 'Content-Type: application/json' \
--header 'X-ACCOUNT-ID: <api-key>' \
--header 'X-API-KEY: <api-key>' \
--data '{
"transcript": "Hey, how'\''s it going? Good good yeah, so what'\''s going on? Yeah, hi I'\''m Edward yeah hi hi Edward. How'\''s it going? Yeah, good good. So I'\''ve been having a couple of issues like my back pain and knee pain.",
"date": "<string>",
"language": "en",
"noteType": {
"description": "<string>",
"type": "note_style",
"template": "write a standard clinical SOAP note with the following sections: - **Subjective**: Contains detailed HPI. - **Objective**: Contains PE and ROS. - **Assessment**: Contains differential diagnoses with corresponding plans. - **Patient Instructions**: Contains a list of instructions for the patient.",
"includeJson": true
},
"patientInfo": {
"name": "<string>",
"dateOfBirth": "2023-12-25",
"gender": "male"
},
"previousNote": "<string>",
"context": "<string>",
"instructions": [
"Use a professional and concise tone.",
"Include key details without unnecessary elaboration.",
"Ensure clarity for a general audience."
],
"medicationList": "<string>"
}'
The raw medical transcript text to be processed into a clinical note
Example:
"Hey, how's it going? Good good yeah, so what's going on? Yeah, hi I'm Edward yeah hi hi Edward. How's it going? Yeah, good good. So I've been having a couple of issues like my back pain and knee pain."
Language code for the transcript content. While multiple languages are supported, English ('en') is recommended for optimal output quality and accuracy.