Drop files here or click to browse
Up to 3 files — images, videos, audio, documents & more
JPG
PNG
GIF
MP4
MP3
PDF
ZIP
All files
Max 100 MB per file · Max 3 files
0%
Upload Complete
Upload from URL
Download a file from a remote URL directly to your storage
API Integration
Upload files programmatically using our REST API endpoint
POST
/upload
# Upload up to 3 files curl -X POST http://localhost:7000/upload \ -F "files=@/path/to/file1.jpg" \ -F "files=@/path/to/file2.pdf"
POST
/upload/single
# Upload single file with field name "file" curl -X POST http://localhost:7000/upload/single \ -F "file=@/path/to/file.mp4"
JavaScript Fetch Example
const formData = new FormData(); // Append up to 3 files with field name "files" formData.append('files', fileInput.files[0]); formData.append('files', fileInput.files[1]); formData.append('files', fileInput.files[2]); const res = await fetch('/upload', { method: 'POST', body: formData }); const data = await res.json(); if (data.success) { data.files.forEach(f => console.log(f.url)); }
Response Format
{
"success": true,
"message": "3 file(s) uploaded successfully",
"files": [
{ "url": "/files/abc.jpg", ... },
{ "url": "/files/def.pdf", ... },
{ "url": "/files/ghi.png", ... }
]
}
Storage Stats
Real-time storage usage and file statistics
Total Files
--
Total Size
--
Disk Free
--
Disk Total
--