Skip to content
Monologue
Esc
navigateopen⌘Jpreview

Get a note

Returns the full details for a single note that belongs to the authenticated user.

GET/v1/public-api/notes/{note_id}
Authorization
AuthorizationBearer token · headerrequired
Path parameters
note_idstring<uuid>required
Responses
200Successful Response
note_idstringrequired
Unique identifier for the note.
titlestring | any
Generated or user-facing note title.
Show properties
Any of:
string
string
any
any
summarystring | any
Short summary of the note contents.
Show properties
Any of:
string
string
any
any
transcriptstring | any
Full transcript text for the note.
Show properties
Any of:
string
string
any
any
transcript_segmentsobject[] | any
Structured transcript segments, when available.
Show properties
Any of:
object[]
Array of object
object
any
any
tagsNoteTagResponse[]
Tags assigned to the note, including auto-tag metadata.
Show properties
Array of NoteTagResponse
tag_idstringrequired
namestringrequired
positionintegerrequired
created_atstring<date-time>required
updated_atstring<date-time>required
sourcestringrequired
Allowed:userauto
confidencenumber | any
Show properties
Any of:
number
number
any
any
recorded_atstring<date-time> | any
Timestamp when recording began, when supplied by the client.
Show properties
Any of:
string<date-time>
string<date-time>
any
any
created_atstring<date-time>required
Timestamp when the backend created the note.
updated_atstring<date-time>required
Timestamp when the note was last updated.
401Missing or invalid personal API token.
403The personal API token is missing the required scope.
404The note was not found for the authenticated user.
422Validation Error
detailValidationError[]
Show properties
Array of ValidationError
locstring | integer[]required
Show properties
Array of string | integer
Any of:
string
string
integer
integer
msgstringrequired
typestringrequired
Request
curl -X GET "https://api.monologue.to/v1/public-api/notes/%3Cuuid%3E" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "note_id": "string",
  "title": "string",
  "summary": "string",
  "transcript": "string",
  "transcript_segments": [
    {}
  ],
  "tags": [
    {
      "tag_id": "string",
      "name": "string",
      "position": 0,
      "created_at": "2024-01-01T00:00:00Z",
      "updated_at": "2024-01-01T00:00:00Z",
      "source": "user",
      "confidence": 0
    }
  ],
  "recorded_at": "2024-01-01T00:00:00Z",
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-01T00:00:00Z"
}