메인 콘텐츠로 건너뛰기
POST
/
v1
/
external
/
users
/
me
/
word-memories
curl --request POST \
  --url https://api.tiro.ooo/v1/external/users/me/word-memories \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entry": "인공지능"
}
'
{
  "id": 1,
  "entry": "인공지능",
  "createdAt": "2026-04-01T10:30:00Z"
}

인증

Authorization
string
header
필수

API key in format {id}.{secret}

본문

application/json
entry
string
필수

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

Minimum string length: 1
예시:

"인공지능"

응답

Word memory created

id
integer<int64>
필수

Unique identifier of the word memory

예시:

1

entry
string
필수

The registered word or term

예시:

"인공지능"

createdAt
string<date-time>
필수

When the word memory was created (ISO 8601)

예시:

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