curl --request GET \
--url https://api.tiro.ooo/v1/external/notes/{noteGuid}/paragraphs \
--header 'Authorization: Bearer <token>'{
"content": [
{
"uuid": "para-1",
"transcribeLocale": "en_US",
"transcript": {
"type": "text/plain",
"content": "Hello everyone..."
},
"translateLocale": "ko_KR",
"translated": {
"type": "text/plain",
"content": "여러분 안녕하세요..."
},
"summaryLocale": "en_US",
"summary": {
"type": "text/markdown",
"content": "- Greeting and agenda..."
},
"timeFrom": "2025-07-20T10:00:10Z",
"timeTo": "2025-07-20T10:00:25Z",
"locked": false
}
],
"nextCursor": "opaque-cursor-string"
}Retrieve paragraphs for a specific note
curl --request GET \
--url https://api.tiro.ooo/v1/external/notes/{noteGuid}/paragraphs \
--header 'Authorization: Bearer <token>'{
"content": [
{
"uuid": "para-1",
"transcribeLocale": "en_US",
"transcript": {
"type": "text/plain",
"content": "Hello everyone..."
},
"translateLocale": "ko_KR",
"translated": {
"type": "text/plain",
"content": "여러분 안녕하세요..."
},
"summaryLocale": "en_US",
"summary": {
"type": "text/markdown",
"content": "- Greeting and agenda..."
},
"timeFrom": "2025-07-20T10:00:10Z",
"timeTo": "2025-07-20T10:00:25Z",
"locked": false
}
],
"nextCursor": "opaque-cursor-string"
}API key in format {id}.{secret}
Note GUID
Cursor for the next page
Page size (default 100)
1 <= x <= 1000List of paragraphs
Array of items for current page
Show child attributes
Unique identifier for the paragraph
"para-1"
Locale used for transcription
"en_US"
{
"type": "text/plain",
"content": "Hello everyone..."
}Locale used for translation
"ko_KR"
{
"type": "text/plain",
"content": "여러분 안녕하세요..."
}Locale used for summary
"en_US"
{
"type": "text/markdown",
"content": "- Greeting and agenda..."
}Start time of the paragraph
"2025-07-20T10:00:10Z"
End time of the paragraph
"2025-07-20T10:00:25Z"
Whether the paragraph is locked for editing
false
Cursor for next page, null if last page
"opaque-cursor-string"