---
title: "List User Word Memories"
method: GET
path: "/v1/external/users/me/word-memories"
tags: ["Word Memory"]
---

# List User Word Memories

`GET /v1/external/users/me/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

## Query parameters

- `cursor` string
- `size` integer

## Response `200`

Paginated list of user word memories

- object
  - `content` WordMemory[], required — Array of items for current page
    - `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)
  - `nextCursor` string, nullable, required — Cursor for next page, null if last page

## Other responses

- `401` — Unauthorized

---

[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/versions/ae18d7961aa4/schema)
