Short-lived file handoff on your own bucket. Single download by default. Bytes never touch our servers — uploads and downloads go straight to storage via presigned URLs.
# One-liner upload (plain-text response — the claim URL is printed to stdout)
curl -T report.pdf -H "Authorization: Bearer $DROP_TOKEN" https://drop.everyof.com/up/report.pdf
# Equivalent: create a drop via the API, then upload separately
curl -s -X POST https://drop.everyof.com/v1/drops \
-H "Authorization: Bearer $DROP_TOKEN" \
-d '{"filename":"report.pdf","size_bytes":123456}'
# → upload: presigned PUT URL · claim: https://drop.everyof.com/d/<id>
# For files >128 MiB the redirect path is used; add -D - to see claim headers
curl -sLT large.zip -H "Authorization: Bearer $DROP_TOKEN" -D - -o /dev/null https://drop.everyof.com/up/large.zip | grep -i x-drop
Sender dashboard, buckets and API keys: use the API (/v1/drops, /v1/bucket-credentials, /v1/api-keys) or the drop CLI. Manage your team.