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