🌎

SHARENATION

Share 4 All

Welcome to ShareNation!

ShareNation is a file-sharing website built as a coding project, that allows users to upload and share files for free without any signup/login.

You have the option to generate unique/custom download links for your files, and the number of downloads for each file is limited to 5. Current file size limit:250mb (donate for larger space)

You also have the option to set a deletion time, after which files are automatically removed from the server, making them unrecoverable. By default, files are deleted after 1 day.

If you find ShareNation useful and would like to support us, you can make a donation using the following BTC address: bc1qxap4qm5dffctgwkh8vu24458acspfs2cdeuvsm

Upload a file

Upload a file with Curl

curl -F "file=@example.txt" https://sharenation.org/upload

Download a file with Curl

curl -OJ https://sharenation.org/your_custom_link

More detailed upload a file with Curl

  curl -F "file=@/path/to/your/file" -F "link=your_custom_link" -F "time=your_deletion_time_in_seconds" https://sharenation.org/upload
             

Replace /path/to/your/file with the path to your file, your_custom_link with your custom link (optional), and your_deletion_time_in_seconds with the deletion time in seconds.