🖼️ Image Worker API

v1.0.0 • High Performance Image Upload Server

POST/api/upload

Drop images here or click to select

Supports: JPEG, PNG, GIF, WebP • Max 50MB

Uploading...

📚 API Endpoints

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

💻 Code Examples

// 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
});