Link shortening service

Short links,
more possibilities.

Create, protect, schedule and measure every link from one dashboard — with a REST API and a full audit trail.

Accounts are created by an administrator — no public sign-up.

https://isref.cc/dashboard
isref.cc/launch
→ example.com/product/launch-2026
1,284 clicks Active
isref.cc/aB3xK9
→ docs.example.com/getting-started
Password 312 clicks
isref.cc/webinar
→ example.com/live
Scheduled
Everything you need

Built for links that matter

Custom or auto codes

Pick a memorable slug like /launch, or let a CSPRNG pick one. Reserved words are blocked.

Password-protected links

Require a password before the redirect. Stored hashed and never exposed by the API.

Scheduled availability

Set an activate-from date and an expiry. Early visitors get “not active yet”; expired links return 410.

Click analytics

Per-link and account totals — today, 7-day, 30-day, top links. Visitor IPs are stored only as a hash.

REST API + tokens

Full CRUD under /api/v1 with Sanctum bearer tokens and per-token abilities, checked server-side.

Audit log

Every create, update, disable and delete is recorded with the actor, the target and metadata.

Three steps

From long URL to tracked link

1

Create a link

Paste a destination, add a title, and set a password or schedule if you need one.

2

Share the short URL

Hand out isref.cc/aB3xK9 — clean, fast 302 redirects, nothing heavy on the request.

3

Track performance

Watch clicks roll in on the dashboard, per link and across the account.

Developer-friendly

A REST API for every link

Manage shortlinks programmatically with scoped bearer tokens. Abilities like shorturl:read and shorturl:create are enforced on the server — the client never asserts its own permissions.

# Create a short link
curl -X POST https://isref.cc/api/v1/shortlinks \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{"destination_url":"https://example.com/page","code":"launch"}'

# → 201 Created
{
  "success": true,
  "data": { "code": "launch", "short_url": "https://isref.cc/launch" },
  "message": "Short link created."
}

Ready when you are

Sign in to your dashboard and start shortening.

Go to dashboard