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"
}Retrieve a specific summary with full content.
By default, returns content in Markdown format. Use the format query parameter to request a different format.
See Template Based Documents for more details.
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"
}API key in format {id}.{secret}
Note GUID
Summary ID from list endpoint
Content format
text/markdown, text/plain Summary with full content
Complete summary with content
Summary ID
123
Associated note GUID
"note-abc123-def456"
Supported language locale
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 "ko_KR"
Creation timestamp
"2025-12-12T12:00:00Z"
Last update timestamp
"2025-12-12T12:05:00Z"