Personal file storage powered by Cloudflare R2
Click to upload or drag and drop
Any file type supported
⚠️ Maximum file size: 100 MB
# Upload a file
curl -X PUT "https://storage.fishpie.top/<filename>" \
-H "X-Auth-Token: <YOUR_TOKEN>" \
--data-binary <filename>
# Download a file
curl -O -H "X-Auth-Token: <YOUR_TOKEN>" \
"https://storage.fishpie.top/<filename>"
# List all files
curl -H "X-Auth-Token: <YOUR_TOKEN>" \
"https://storage.fishpie.top/api/list"
# Delete a file
curl -X DELETE "https://storage.fishpie.top/<filename>" \
-H "X-Auth-Token: <YOUR_TOKEN>"