Google Drive Upload

Upload files directly to Google Drive

API Status
Checking...
Admin Setup Required

Connect your Google account to enable file uploads

Upload Files

Drag & drop files here or click to browse

Uploading...
API not configured. Admin needs to connect their Google account first.

API Endpoints

GET /api/status
Check if API is configured
POST /api/upload
Upload a single file (no auth required)
POST /api/upload/multiple
Upload multiple files (max 10)
POST /api/folders
Create a folder
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

View on GitHub