메인 콘텐츠로 건너뛰기
GET
/
v1
/
external
/
teams
/
me
/
word-memories
List Team Word Memories
curl --request GET \
  --url https://api.tiro.ooo/v1/external/teams/me/word-memories \
  --header 'Authorization: Bearer <token>'
{
  "content": [
    {
      "id": 1,
      "entry": "딥러닝",
      "createdAt": "2026-04-01T10:30:00Z"
    },
    {
      "id": 2,
      "entry": "자연어처리",
      "createdAt": "2026-04-01T10:35:00Z"
    }
  ],
  "nextCursor": "eyJpZCI6MiwiY3JlYXRlZEF0IjoiMjAyNi0wNC0wMVQxMDozNTowMFoifQ"
}

인증

Authorization
string
header
필수

API key in format {id}.{secret}

쿼리 매개변수

cursor
string

Cursor for the next page. Obtained from nextCursor in previous response.

size
integer
기본값:1000

Number of word memories to return per page

필수 범위: 1 <= x <= 1000

응답

Paginated list of team word memories

content
object[]
필수

Array of items for current page

nextCursor
string | null
필수

Cursor for next page, null if last page

예시:

"opaque-cursor-string"