Simple file storage with a boring API
Upload a file, get a link. No accounts, no dashboards, no surprises.
Upload
POST or stream your file to the upload endpoint. Chunked uploads are supported for large files.
curl -T ./report.pdf https://fastbin.example/api/uploadFile/
Max object size 5 GB. Objects expire after 30 days unless pinned.
Chunked
Large files are split client-side and reassembled on our side.
Resumable
Interrupted uploads resume from the last acknowledged chunk.
Direct links
Every object gets a stable URL you can hotlink.