Public Bun file host Upload with multipart PUT or POST: curl -X PUT -F "file=@./photo.jpg" http://localhost:8190/api/files curl -X PUT -F "file=@./photo.jpg" -F "expiry=in 5 days" http://localhost:8190/api/files JSON response: curl -X PUT -H 'Accept: application/json' -F "file=@./photo.jpg" -F "expiry=tomorrow 5pm" http://localhost:8190/api/files List uploads: curl http://localhost:8190/api/files Delete a file: curl -X DELETE http://localhost:8190/api/files/photo.jpg Use multipart fields: file, optional filename, optional expiry.