Skip to main content
GET
/
v1.0
/
notes
/
{noteId}
Get a note by ID
curl --request GET \
  --url https://api.lofty.com/v1.0/notes/{noteId} \
  --header 'Authorization: <authorization>'
{
  "note": {
    "id": 563172647619608,
    "noteId": 400000012345,
    "creatorId": 100234,
    "leadId": 100001,
    "createTime": "2026-04-22 10:15:30",
    "deleteFlag": false,
    "content": "Discussed Austin inventory, will send pre-approval doc tomorrow.",
    "lastUpdate": "2026-04-22 10:20:00",
    "lastEditorId": 100234,
    "creatorName": "Alice Johnson",
    "lastEditorName": "Alice Johnson",
    "isPin": false,
    "systemNote": false
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.lofty.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string
required

Bearer [access_token]

Path Parameters

noteId
integer<int64>
required

ID of the note to retrieve.

Required range: x >= 1

Response

Note retrieved successfully.

Wrapped response for GET /v1.0/notes/{noteId}. The note entry is returned under the 'note' key.

note
object

Note entry.