File Manager API

REST API for buckets, files, links, folders and your file manager. Authenticate with an API key (Authorization: Bearer fmsk_…). Only endpoints you can call with an API key are listed — each shows the scope it needs. Set your base URL and token above, then use Try it, or download the Postman collection.

Base: /api/v145 endpointsOpenAPI JSON ↗
GET/bucketsscope bucket:readAPI key / session

All buckets for the current vendor.

cURL
curl -X GET "/api/v1/buckets" \
  -H "Authorization: Bearer <TOKEN>"
Try it