v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Word Memory

List User Word Memories

Retrieve user word memories with cursor-based pagination.

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.

  • Use cursor from previous response's nextCursor to paginate through results
get/v1/external/users/me/word-memories

Query parameters

cursorstring

Cursor for the next page. Obtained from nextCursor in previous response.

sizeinteger

Number of word memories to return per page

Response

Paginated list of user word memories

nextCursorstring nullable required

Cursor for next page, null if last page

Example response

{
  "content": [
    {
      "id": 1,
      "entry": "인공지능",
      "createdAt": "2026-04-01T10:30:00Z"
    }
  ],
  "nextCursor": "opaque-cursor-string"
}