Skip to main content
GET
/
v1
/
external
/
teams
/
me
/
folders
List Team Folders
curl --request GET \
  --url https://api.tiro.ooo/v1/external/teams/me/folders \
  --header 'Authorization: Bearer <token>'
{
  "content": [
    {
      "id": "12345",
      "title": "Team Projects",
      "isTeamFolder": true
    },
    {
      "id": "12346",
      "title": "Team Resources",
      "isTeamFolder": true
    }
  ],
  "nextCursor": "eyJpZCI6MTIzNDZ9"
}

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 folders to return per page

Required range: 1 <= x <= 1000

Response

Paginated list of team folders

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"