Skip to main content
Browse storage one level at a time. The response holds the folders and files directly inside the path you ask for, and never descends into subfolders.
Omit path, or pass an empty string, to list the root. No endpoint returns the whole tree: walk it by calling this one once per folder, using each folder’s path. Auth: API key required. A dashboard session cookie also works.

Query parameters

Response

Folder object:
  • name, string: folder name, without any parent path
  • path, string: full path relative to the storage root. Pass it back as path to descend into it, or as the {path} segment of the other storage endpoints
File object:
  • name, string: file name, without any parent path
  • path, string: full path relative to the storage root. Use it as the {path} segment of the other storage endpoints, and after /t/ to deliver the file
  • size, number: size in bytes. May be absent on cloud storage backends that do not report it for a given object
  • mtime, string: ISO 8601 last-modified timestamp. May be absent for the same reason as size
Folders carry only their name and path. For item counts or preview thumbnails, call folder summaries for the folders you actually render, which keeps this endpoint’s latency independent of how many subfolders a level holds.

Stats & Folder Summaries

Item counts and preview thumbnails, plus aggregate usage.

File Metadata

Get size and timestamps for a specific file.

Move File or Folder

Move a file or folder into a different parent folder.

Delete

Remove a file or a folder and its cached variants.