curl --request GET \
--url https://api.tiro.ooo/v1/external/users/me/word-memories \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": 1,
"entry": "인공지능",
"createdAt": "2026-04-01T10:30:00Z"
},
{
"id": 2,
"entry": "Tiro",
"createdAt": "2026-04-01T10:35:00Z"
}
]
}Retrieve all word memories for the authenticated user.
Word memories help Tiro accurately recognize important terms — such as company names, people’s names, and product names — during voice transcription. Registered words are referenced in real-time to reduce transcription errors.
curl --request GET \
--url https://api.tiro.ooo/v1/external/users/me/word-memories \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": 1,
"entry": "인공지능",
"createdAt": "2026-04-01T10:30:00Z"
},
{
"id": 2,
"entry": "Tiro",
"createdAt": "2026-04-01T10:35:00Z"
}
]
}