Skip to main content
GET
/
v1
/
external
/
notes
/
{noteGuid}
/
paragraphs
List Note Paragraphs
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"
}

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Path Parameters

noteGuid
string
required

Note GUID

Query Parameters

cursor
string

Cursor for the next page

size
integer
default:100

Page size (default 100)

Required range: 1 <= x <= 1000

Response

List of paragraphs

content
object[]
required

Array of items for current page

nextCursor
string | null
required

Cursor for next page, null if last page

Example:

"opaque-cursor-string"