---
title: "List Workspace Word Memories"
method: GET
path: "/v1/external/workspaces/{workspaceGuid}/word-memories"
tags: ["Word Memory"]
---

# List Workspace Word Memories

`GET /v1/external/workspaces/{workspaceGuid}/word-memories`

List a workspace's shared word memories with cursor-based pagination. Name the target workspace in the path with its `workspaceGuid` — obtain it from `GET /v1/external/workspaces`.

Workspace word memories are shared among all workspace members. When any member records a meeting, Tiro references both personal and workspace word memories for accurate transcription. New members benefit from the shared vocabulary without additional setup.

Use a **user** or **workspace-bound** API key. A workspace-bound key must match the `workspaceGuid` in the path, or it returns `403`. A user key must belong to a member of the workspace, or it returns `403`.

- Use `cursor` from the previous response's `nextCursor` to paginate through results.

## Path parameters

- `workspaceGuid` string, required

## Query parameters

- `cursor` string
- `size` integer

## Response `200`

Paginated list of workspace 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 — missing API key
- `403` — Forbidden — the API key is not scoped to this workspace, or you are not a member of it
- `404` — Workspace not found

---

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