Skip to main content
GET
/
v1
/
external
/
notes
/
{noteGuid}
/
summaries
/
{summaryId}
Get Note Summary
curl --request GET \
  --url https://api.tiro.ooo/v1/external/notes/{noteGuid}/summaries/{summaryId} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "noteGuid": "note-abc123-def456",
  "template": {
    "id": 1,
    "title": "One-Pager"
  },
  "locale": "ko_KR",
  "content": {
    "type": "text/markdown",
    "content": "# Meeting Summary\n\n## Key Points\n- Discussed Q4 roadmap\n- Budget approved..."
  },
  "createdAt": "2025-12-12T12:00:00Z",
  "updatedAt": "2025-12-12T12:00:00Z"
}

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Path Parameters

noteGuid
string
required

Note GUID

summaryId
integer<int64>
required

Summary ID from list endpoint

Query Parameters

format
enum<string>
default:text/markdown

Content format

Available options:
text/markdown,
text/plain

Response

Summary with full content

Complete summary with content

id
integer<int64>
required

Summary ID

Example:

123

noteGuid
string
required

Associated note GUID

Example:

"note-abc123-def456"

template
object
required

Summary template information

locale
enum<string>
required

Supported language locale

Available options:
ko_KR,
en_US,
de_DE,
ja_JP,
es_ES,
fr_FR,
id_ID,
vi_VN,
tr_TR,
uk_UA,
ru_RU,
hi_IN,
it_IT,
zh_CN,
ms_MY,
th_TH
Example:

"ko_KR"

content
object
required
createdAt
string<date-time>
required

Creation timestamp

Example:

"2025-12-12T12:00:00Z"

updatedAt
string<date-time>
required

Last update timestamp

Example:

"2025-12-12T12:05:00Z"