March 6, 2026
How to Track Who Viewed Your PDF in 2026
You sent a proposal three days ago. No reply. Did they open it? Did they read past the first page? Did they forward it to someone else? You have no idea — because PDFs are black holes. Once you hit send, you lose all visibility.
This guide covers four approaches to tracking PDF views in 2026, from free hacks to purpose-built tools. Each has trade-offs in reliability, cost, and depth of analytics.
1. Email read receipts
The simplest approach: request a read receipt when you email the PDF. Most email clients
(Outlook, Thunderbird, Apple Mail) support the Disposition-Notification-To header.
The problem? Recipients can decline the receipt. Gmail ignores them entirely for consumer accounts. And even when they work, you only know the email was opened — not whether the attachment was viewed, which pages were read, or how long they spent on each section.
Verdict: Free, but unreliable. You get a binary "opened/not opened" signal at best, and nothing at worst.
2. Google Drive activity dashboard
Upload your PDF to Google Drive, share it as a link, and check the Activity panel. Drive shows who viewed the file and when — but only if the viewer is signed into a Google account and you shared it with their specific email address.
Limitations are significant: no page-level analytics, no time-on-page data, no completion tracking. If you share a link publicly or the viewer opens it in an incognito window, Drive records nothing. And the viewer can download the file, removing any future tracking.
Verdict: Free, but limited to Google ecosystem. No depth beyond "viewed on this date." Downloads kill all future visibility.
3. DocSend
DocSend (now owned by Dropbox) is the most well-known document tracking tool. Upload a PDF, get a trackable link, and see per-page analytics in a dashboard. It works well for sales teams and fundraising founders who need to know exactly which slides investors spent time on.
The cost is the issue. The Standard plan is $45/user/month, and watermarks require the Advanced plan at $150+/user/month. For a 3-person team that needs basic tracking, you're looking at $135-$450/month. The free trial limits you to 100 total visits. And there's no API — everything is manual through the web UI.
Verdict: Reliable tracking with good analytics, but expensive and GUI-only. No way to integrate into your own product.
4. CloakShare (API-first tracking)
CloakShare is an open-source API for secure document sharing. Upload a PDF, get a tokenized link with built-in analytics. Every view is tracked with page-level detail: which pages were seen, how long the viewer spent on each one, completion rate, and return visits.
The difference from DocSend is the delivery model. CloakShare is an API, not a GUI. You create links programmatically, embed them in your own product, and pull analytics via REST endpoints. It's MIT licensed and self-hostable — run it on your own server for unlimited usage, or use the cloud version with a free tier of 50 links and 500 views per month.
Create a tracked link
$ curl -X POST https://api.cloakshare.dev/v1/links \
-H "Authorization: Bearer ck_live_xxx" \
-F file=@proposal.pdf \
-F expires_in="7d" \
-F require_email=true Check who viewed it
$ curl https://api.cloakshare.dev/v1/links/lnk_xK9mP2/analytics \
-H "Authorization: Bearer ck_live_xxx" The analytics endpoint returns total views, unique viewers, per-page dwell time, completion percentage, and a list of sessions with timestamps and email addresses (if email gating is enabled). You can also receive real-time webhook notifications when someone opens your link.
Verdict: Free tier available, API-first, self-hostable. Best option if you need to integrate tracking into your own workflow or product.
Which approach should you use?
It depends on your use case. If you're sending one-off proposals and just want a rough signal, Google Drive's activity panel is free and good enough. If you're a sales team sharing decks all day and budget isn't a concern, DocSend works. If you're a developer building document sharing into a product, or a startup that needs analytics without the $45/user/month price tag, CloakShare gives you the most flexibility.
The key question is whether you need to know that someone opened your PDF, or how they read it. For the first, email receipts and Drive are fine. For the second, you need a purpose-built tool.
CloakShare