Create a tracking page in 30 seconds. Send a link. Anyone you share with sees live progress — or ticks events off themselves. Like parcel tracking, for everything else.
From a one-off parcel to a 90-day onboarding plan. Events have status, descriptions, images, and threaded comments. No project-management overhead.
Tokenized URLs work without an account. Toggle to read-only and recipients just watch — toggle to todo-mode and they tick events off themselves.
Reusable templates for the work you do over and over. Apply, fill in the specifics, share. Free templates for parcels, onboarding, and more.
Generate pages from your backend. Update event status from your own systems. Webhook out on every change. Built-in idempotency keys. Free up to 10k events / month.
curl -X POST https://api.trackpage.app/v1/pages \
-H "Authorization: Bearer tk_live_8fK2nL..." \
-H "Content-Type: application/json" \
-d '{
"title": "Order #DH-208841",
"visibility": "link",
"events": [
{ "title": "Order placed", "status": "done" },
{ "title": "Picked up", "status": "done" },
{ "title": "In transit", "status": "progress" },
{ "title": "Out for delivery", "status": "unmarked" },
{ "title": "Delivered", "status": "unmarked" }
]
}'