curl --request GET \
--url https://api.tiro.ooo/v1/external/users/me/folders \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "folder-abc123",
"title": "Personal Notes",
"isTeamFolder": false
},
{
"id": "folder-def456",
"title": "Work Projects",
"isTeamFolder": false
}
],
"nextCursor": "eyJpZCI6MTIzNDZ9"
}Retrieve user folders with cursor-based pagination.
cursor from previous response’s nextCursor to paginate through resultscurl --request GET \
--url https://api.tiro.ooo/v1/external/users/me/folders \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "folder-abc123",
"title": "Personal Notes",
"isTeamFolder": false
},
{
"id": "folder-def456",
"title": "Work Projects",
"isTeamFolder": false
}
],
"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.
API key in format {id}.{secret}
Cursor for the next page. Obtained from nextCursor in previous response.
Number of folders to return per page
1 <= x <= 1000