Skip to main content
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"
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.tiro.ooo/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Query Parameters

cursor
string

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

size
integer
default:1000

Number of word memories to return per page

Required range: 1 <= x <= 1000

Response

Paginated list of team word memories

content
object[]
required

Array of items for current page

nextCursor
string | null
required

Cursor for next page, null if last page

Example:

"opaque-cursor-string"