API Reference
Integrate Buzstorage into your application with our REST API. We provide simple, powerful endpoints to manage files, folders, and search functionality.
Base URLs
Public API (Uploads)
https://api.buzstorage.com/api/public/v1Protected API (Management)
https://api.buzstorage.com/api/protectedAuthentication
Bearer Token Authentication
All API requests must be authenticated using your Access Key ID and Secret Access Key. Combine them separated by a colon and send them in the Authorization header.
Authorization: Bearer <ACCESS_KEY_ID>:<SECRET_ACCESS_KEY>Standard Response Format
All responses follow a standard JSON envelope format.
{
"error": false,
"message": "Successful",
"data": { ... }
}