Use case

Shorten a Dropbox Link

Dropbox has never had a link shortener. Wrap the share URL instead — a custom slug you choose, click analytics on every open, and your ?dl=1 download parameter passed straight through. No account, no monthly cap.

  • No signup
  • Custom slug
  • Download links intact
  • Free forever

Dropbox doesn't shorten links, and never has

A modern Dropbox share URL looks like this:

https://www.dropbox.com/scl/fi/8kq2mv7nz0xw1cypt4bj9/Q3-Brand-Assets.zip?rlkey=h3f9d2qa7pxv0nb6mzt1e8kwu&dl=0

That's ~120 characters, two opaque tokens, and a trailing parameter that changes what the link actually does. It wraps in email, breaks across a line in a PDF, and is unusable on a printed page.

Dropbox's answer is that there isn't one. Link shortening and custom share URLs have been requested on the Dropbox Community forums since at least 2015 and have never shipped, on any plan. Paid tiers let you brand the preview page; the URL itself stays exactly as long. Dropbox's own guidance on those threads is to run the link through a third-party shortener — and the top-ranked version of that advice still recommends goo.gl, which Google switched off on 25 August 2025.

So the job falls to a wrapper. A link like zip1.io/q3-assets is 17 characters, survives a slide deck, and counts every open.

Pick your download behaviour before you shorten

This is the part most Dropbox guides skip. The parameter on the end of a Dropbox URL decides what a visitor gets, and zip1.io redirects to the exact string you saved — so the parameter you shorten is the behaviour you ship.

Parameter What the visitor gets Use it for
?dl=0 Dropbox's preview page, with a Download button The default. Good when you want the Dropbox chrome and file listing.
?dl=1 The download starts immediately, no preview page Client deliverables, asset bundles, "click here to get the file".
?raw=1 The file is served inline for the browser to render Embedding an image or displaying a PDF in place.

Swap the parameter in the Dropbox URL first, then shorten. Nothing stops you minting two slugs for the same file — zip1.io/q3-assets on dl=0 for people who want to browse it, and zip1.io/q3-assets-dl on dl=1 for people who just want the zip.

These are Dropbox's parameters, not zip1.io's. zip1.io neither adds nor strips them — it stores your URL verbatim and redirects to it.

Shorten a Dropbox link in five seconds

Via the web form: in Dropbox, hover the file → ShareCopy link. Paste it into zip1.io, click "Advanced Options", set a custom alias, then Shorten.

Via the API (no key required, 10 requests/min per IP):

curl -X POST https://zip1.io/api/create \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.dropbox.com/scl/fi/8kq2mv/Q3-Brand-Assets.zip?rlkey=h3f9d2&dl=1",
    "alias": "q3-assets"
  }'

# Response:
# {"short_url": "https://zip1.io/q3-assets", ...}

The rlkey token and the dl parameter both survive the round trip — zip1.io never rewrites the destination. Dropbox sees exactly the request it would have seen without the short link in front.

Three ways people use it

1. One slug per client delivery

Freelancers and studios hand off the same kind of bundle over and over. Mint zip1.io/acme-final, zip1.io/acme-revisions, zip1.io/acme-print against separate Dropbox folders and the invoice email reads like a deliverable, not a hash. When the client says "I never got the files", the click log settles it.

2. Print, posters, and QR codes

A 120-character Dropbox URL makes a dense QR code that fails to scan from a table tent or a conference banner. A short link makes a sparse one that scans first time. Generate the QR from the zip1.io link (see Create QR codes) and every scan lands in the same click analytics as the digital shares.

3. Cap the downloads

Set max-clicks when you create the link and the short URL stops redirecting once the cap is hit — useful for a licensed asset pack, a paid download, or a file you only meant three people to get. Set it to 1 for a single-redemption handoff (see One-time links). The Dropbox file is untouched; only the route to it closes.

What the analytics tell you

Open https://zip1.io/stats/<slug> for any short link to see:

  • Total clicks and unique visitors — deduplicated by IP
  • Top countries — where the file is actually being fetched from
  • Top referrers — which email, Slack, or portal sent them
  • Browser and OS split — whether people are pulling a 400 MB zip on a phone
  • Bot vs human — Slack and iMessage unfurl bots are tagged separately, so a link preview doesn't read as a download

Export any of it with /export/<slug>/csv — or json, xlsx, xml. One honest caveat: this counts redirects to Dropbox, not completed downloads. Someone can bail on the preview page. It is still strictly more than Dropbox's free plan tells you.

Dropbox native vs. a wrapped short link

Capability Dropbox share link Dropbox + zip1.io bit.ly free
Shortens the URL No — not on any plan Yes Yes
Custom slug No Yes — free, no account Account required
Keeps ?dl=1 / ?raw=1 N/A — it's the source Yes — passed through verbatim Yes
Per-link click analytics Limited on free plan Country / referrer / browser / OS Limited on free tier
Download cap No Yes — max-clicks No
Monthly link cap N/A Unlimited 5 / month

Comparison reflects publicly documented free-tier features at time of writing. Dropbox remains the host and the access control; zip1.io only sits on the link.

Want a password on it instead?

Shortening and password-protecting are different jobs, and this page is about the first. Dropbox does support passwords on shared links, but only on paid plans — Basic doesn't get it. If that's what brought you here, the walkthrough lives on Password protect a Dropbox link, free, which covers the plan matrix, what the gate actually protects against, and where it doesn't help.

The two combine: one short link can carry a custom slug, a password, and a click cap at the same time.

The same trick works for every file host

zip1.io doesn't inspect or rewrite the destination, so any share URL gets the same treatment:

  • Google Drivedrive.google.com/file/d/…/view (see Shorten a Google Drive link)
  • OneDrive / SharePoint1drv.ms/… and the very long sharepoint.com tenant URLs
  • WeTransferwe.tl/t-…
  • Boxapp.box.com/s/…
  • iCloud Driveshare.icloud.com/…

One slug format, one analytics view, whichever host the file happens to live on this quarter.

FAQ

  • Does Dropbox have a built-in link shortener?

    No — not on any plan, and it has been an open feature request since 2015. Paid tiers brand the preview page; the URL stays the same length. Dropbox's own forum answer is to use a third-party shortener.

  • Will shortening break a download link?

    No. zip1.io redirects to the exact URL you saved, query string included, so ?dl=1 still downloads and ?raw=1 still renders inline. Pick the parameter before you shorten.

  • What's the difference between dl=0, dl=1 and raw=1?

    dl=0 shows Dropbox's preview page. dl=1 starts the download immediately. raw=1 serves the file inline for embedding. All three are Dropbox's, not ours — zip1.io passes them through.

  • Can I see if someone opened the file?

    You can see that they followed the link — country, referrer, browser, OS, timestamp, with bots tagged separately. That counts redirects to Dropbox, not finished downloads.

  • What if I revoke the Dropbox link later?

    The short link still redirects, but to Dropbox's "no longer active" page. Short links can't be re-pointed after creation, so re-sharing the file means minting a new one.

  • Is it free?

    Yes. No signup, no monthly link cap. The API is rate-limited to 10 link creations per minute per IP.

Shorten your first Dropbox link

Five seconds. No account. Custom slug and click analytics included.