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"
}