Zero-friction file upload. No CSRF tokens. No file input restrictions.
Direct raw binary POST — straight from fetch() to endpoint.
Built for developers who need it to just work.
Drag files onto the zone, configure your endpoint, hit send. Files are transmitted as raw binary over a direct POST request — no multipart, no base64 bloat.
Choose any files — ZIPs, binaries, images, anything. No restrictions on type or count.
Each file is sent as the raw request body with application/octet-stream. The filename is passed via header.
Your PHP endpoint reads php://input directly and writes the binary to disk. No multipart parsing required.