Skip to content

Demo

Say you have these 2 files on the web:

https://my-test-data-1.s3.amazonaws.com/central-park-bike-map.pdf (~1MB)
https://s3.wasabisys.com/my-test-data-2/earth.mp4 (~1.5MB)

FileSlide lets your clients stream a ZIP download from a simple POST request:

<form action="https://fileslide.io/download" method="post">
  <input type="hidden" name="fs_file_name" value="demo_download.zip" />
  <input
    type="hidden"
    name="fs_uri_list[]"
    value="https://my-test-data-1.s3.amazonaws.com/central-park-bike-map.pdf"
  />
  <input
    type="hidden"
    name="fs_uri_list[]"
    value="https://s3.wasabisys.com/my-test-data-2/earth.mp4"
  />
  <input type="submit" value="Download Zip of 2 Files" />
</form>

Click below to try it now: