curl --request GET \
--url https://api.tiro.ooo/v1/external/teams/me/word-memories \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": 1,
"entry": "딥러닝",
"createdAt": "2026-04-01T10:30:00Z"
},
{
"id": 2,
"entry": "자연어처리",
"createdAt": "2026-04-01T10:35:00Z"
}
]
}Retrieve all word memories shared across the team.
Team word memories are shared among all team members. When any member records a meeting, Tiro references both personal and team word memories for accurate transcription. New team members automatically benefit from the shared vocabulary without additional setup.
curl --request GET \
--url https://api.tiro.ooo/v1/external/teams/me/word-memories \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": 1,
"entry": "딥러닝",
"createdAt": "2026-04-01T10:30:00Z"
},
{
"id": 2,
"entry": "자연어처리",
"createdAt": "2026-04-01T10:35:00Z"
}
]
}