Upload Files
Drag & drop files here or click to browse
API not configured. Admin needs to connect their Google account first.
API Endpoints
GET
Check if API is configured
/api/status
POST
Upload a single file (no auth required)
/api/upload
POST
Upload multiple files (max 10)
/api/upload/multiple
POST
Create a folder
/api/folders
Example upload (no authentication needed):
curl -X POST \
-F "file=@/path/to/file.pdf" \
https://your-api.vercel.app/api/upload
Upload to specific folder:
curl -X POST \
-F "file=@/path/to/file.pdf" \
-F "folderId=YOUR_FOLDER_ID" \
https://your-api.vercel.app/api/upload