---
title: "Create User Word Memory"
method: POST
path: "/v1/external/users/me/word-memories"
tags: ["Word Memory"]
---

# Create User Word Memory

`POST /v1/external/users/me/word-memories`

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`.

## Request body

- CreateWordMemoryRequest
  - `entry` string, required — The word or term to register. Must not be blank.

## Response `201`

Word memory created

- WordMemory
  - `id` integer, required — Unique identifier of the word memory
  - `entry` string, required — The registered word or term
  - `createdAt` string, date-time, required — When the word memory was created (ISO 8601)

## Other responses

- `400` — Bad request — entry is blank
- `401` — Unauthorized
- `409` — Conflict — a word memory with the same entry already exists

---

[API](https://skmtc.net/tiro/apis/tiro-api.md) · [All operations](https://skmtc.net/tiro/apis/tiro-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tiro/tiro-api/revisions/ae18d7961aa4/schema)
