v1.0.0 • High Performance Image Upload Server
Drop images here or click to select
Supports: JPEG, PNG, GIF, WebP • Max 50MB
Uploading...
POST /api/upload
Upload single or multiple images
DELETE /api/upload/:id
Delete image by ID
GET /api/health
Health check
GET /uploads/*
Get uploaded image
// cURL
curl -X POST {BASE_URL}/api/upload \
-H "X-API-Key: your-api-key" \
-F "images=@photo.jpg"
// JavaScript
const formData = new FormData();
formData.append('images', file);
fetch('{BASE_URL}/api/upload', {
method: 'POST',
headers: { 'X-API-Key': 'your-api-key' },
body: formData
});