v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Word Memory

Create User Word Memory

Register a new word to the user's personal word memory.

Once registered, Tiro references this word during voice transcription to improve recognition accuracy. Useful for proper nouns, technical terms, or any word that standard speech-to-text may not recognize correctly.

Duplicate entries (same entry value) are not allowed and will return 409 Conflict.

post/v1/external/users/me/word-memories

Request body

entrystring required

The word or term to register. Must not be blank.

Example request

{
  "entry": "인공지능"
}

Response

Word memory created

idinteger required

Unique identifier of the word memory

entrystring required

The registered word or term

createdAtstring date-time required

When the word memory was created (ISO 8601)

Example response

{
  "id": 1,
  "entry": "인공지능",
  "createdAt": "2026-04-01T10:30:00Z"
}