Skip to main content
GET
/
v1
/
external
/
notes
/
{noteGuid}
Get Note
curl --request GET \
  --url https://api.tiro.ooo/v1/external/notes/{noteGuid} \
  --header 'Authorization: Bearer <token>'
{
  "guid": "note-abc123-def456",
  "title": "Weekly Team Meeting",
  "createdAt": "2024-01-15T10:30:00Z",
  "updatedAt": "2024-01-15T11:45:00Z",
  "sourceType": "live-voice",
  "recordingStartAt": "2024-01-15T10:30:10Z",
  "recordingEndAt": "2024-01-15T11:30:15Z",
  "recordingDurationSeconds": 3605,
  "transcribeLocale": "ko_KR",
  "translateLocale": "en_US",
  "collaborators": []
}

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Path Parameters

noteGuid
string
required

Note GUID

Response

Note details

guid
string
required

Unique identifier for the note

Example:

"note-guid-123"

title
string
required

Note title

Example:

"Meeting notes"

createdAt
string<date-time>
required

ISO-8601 creation timestamp

Example:

"2025-07-20T10:00:00Z"

updatedAt
string<date-time>
required

ISO-8601 last update timestamp

Example:

"2025-07-20T11:10:00Z"

sourceType
enum<string>
required

Source type of the note

Available options:
live-voice,
file-upload
Example:

"live-voice"

recordingStartAt
string<date-time>

Actual recording start timestamp

Example:

"2025-07-20T10:00:10Z"

recordingEndAt
string<date-time>

Actual recording end timestamp

Example:

"2025-07-20T11:00:10Z"

recordingDurationSeconds
integer

Actual recording length in seconds

Example:

3600

transcribeLocale
string

Language locale used for transcription

Example:

"en_US"

translateLocale
string

Language locale used for translation

Example:

"ko_KR"

web_url
string<uri>

Web URL to access the note

Example:

"https://tiro.ooo/n/123"

collaborators
object[]

Array of collaborators with their roles