Your IP: 216.73.216.189
Local time: 2025-12-08 06:41 PM EST

Hourly limit: 0/5
0%
Monthly limit: 0/50
0%

ephemeral-share

Max size: 512 MB

From any computer, you can upload using curl:

curl -sS -F "file=@/path/to/file.png" -F "expiresMinutes=120" https://quickdrop.sichuun.com/api/upload
                        

Example (2-hour expiry):

curl -sS -F "file=@screenshot.png" -F "expiresMinutes=120" https://quickdrop.sichuun.com/api/upload
                        

The API returns JSON like this:

                {
                  "success": true,
                  "id": "AbCdEf123",
                  "link": "https://quickdrop.sichuun.com/d/AbCdEf123",
                  "expiry": "2025-11-28 02:30 PM EST",
                  "sizeBytes": 123456,
                  "filename": "screenshot.png"
                }