API/Get Notes

Notes

Get Note

Gets a single note based on the ID supplied

curl --request GET \
  --url https://api.sully.ai/v1/notes/{noteId} \
  --header 'X-ACCOUNT-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>'

200400Copy

{
  "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"
}

Authorizations

X-API-KEYstringheaderrequiredX-ACCOUNT-IDstringheaderrequired

Path Parameters

noteIdstringrequired

ID of note to get

Response

200200400application/json

Note response

statusstring

Status of the response

Example:

"ok"

dataobject

Show child attributes

datestring

Timestamp of the response

Example:

"2024-11-07T21:27:39.000Z"

Last updated