cURL
curl --request GET \ --url https://api.sully.ai/v1/notes/{noteId} \ --header 'X-ACCOUNT-ID: <api-key>' \ --header 'X-API-KEY: <api-key>'
{ "status": "ok", "data": { "id": "note_EXAMPLE123456789", "payload": { "markdown": "<string>", "json": {} }, "status": "STATUS_DONE", "timestamp": { "start": 1731014849730, "complete": 1731014853958 } }, "date": "2024-11-07T21:27:39.000Z" }
Gets a single note based on the ID supplied
ID of note to get
Note response
Status of the response
"ok"
Show child attributes
Unique identifier for the audio transcription
"note_EXAMPLE123456789"
Either markdown or JSON representation of the note. Both can be present as well.
Markdown string of the note
JSON object of the note. The note style used will determine which fields are present. See the SOAP Note example.
Processing status of the note
"STATUS_DONE"
Start timestamp
1731014849730
Complete timestamp
1731014853958
Timestamp of the response
"2024-11-07T21:27:39.000Z"