Skip to main content
GET
/
v1
/
external
/
users
/
me
/
word-memories
/
{wordMemoryId}
Get User Word Memory
curl --request GET \
  --url https://api.tiro.ooo/v1/external/users/me/word-memories/{wordMemoryId} \
  --header 'Authorization: Bearer <token>'
{
  "id": 1,
  "entry": "인공지능",
  "createdAt": "2026-04-01T10:30:00Z"
}

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Path Parameters

wordMemoryId
integer<int64>
required

Word memory ID

Response

Word memory details

id
integer<int64>
required

Unique identifier of the word memory

Example:

1

entry
string
required

The registered word or term

Example:

"인공지능"

createdAt
string<date-time>
required

When the word memory was created (ISO 8601)

Example:

"2026-04-01T10:30:00Z"