Skip to main content

Secure access

Show clients the live system without creating accounts

Send a client a link to a live dashboard or demo. They click and see the real thing — no signup, no password — and it expires when the meeting’s over.

Let clients into the live thing, briefly

You need to show a client their campaign dashboard, or demo your product to a prospect. So you spin up a one-off account you’ll forget to delete, send a screenshot that’s already stale, or schedule a screenshare. Every option is either insecure, lifeless, or a standing portal you now have to maintain.

The usual fixWhat to consider
One-off accountProvision it, send a welcome email, hope the password stays put, remember to deactivate.
Screenshot / recorded demoInstantly stale. No live data, and the client can’t explore on their own.
Permanent client portalOngoing security upkeep, account lifecycle, password-reset flows.

A link to the real system, gone when you’re done

With the dashboard behind a connector, point a qURL at it, set an expiry, and send it.

POST /v1/qurls
{
  "target_url":   "https://app.acme.co/dashboards/northwind",
  "expires_in":   "48h",
  "max_sessions": 3
}

A link to the live dashboard, good for 48 hours and up to three viewers.

  1. Create the link

    One qURL points at the live resource and sets who it’s for, how long it lasts, and how many can view.

  2. They click

    The client sees the real dashboard with live data — no account, no install, no friction.

  3. It expires

    48 hours for a demo, a week for a review. Then the link is dead and the connector returns the resource to invisible.

What to install, and how someone gets in

  1. 01Run the connector sidecar beside the dashboard, pointed at its local port
  2. 02Find the resource id the connector published with qurl list
  3. 03Authenticate the client in your own app, through the identity provider you already run
  4. 04Mint a link for that session with POST /v1/resources/{id}/qurls
  5. 05Redirect them to the returned qurl_link — it opens once, then expires

Share live systems without the account lifecycle

Zero-friction client experience

Clients click a link. No signup, no password, no app. They see the live resource immediately.

Time-limited by default

Access expires automatically. No accounts to deactivate, no permissions to revoke.

Live system access

Clients see real dashboards and live data — not stale screenshots or recorded demos.

Audit trail

Know when clients accessed what. Useful for billing, engagement tracking, and compliance.

Built for

  • Agencies sharing campaign dashboards and deliverables with clients
  • SaaS companies providing time-limited product demos to prospects
  • Consulting firms sharing reports and analysis with engagement leads
  • Financial advisors providing temporary access to portfolio dashboards
  • Any organization that needs to share live systems without creating accounts

Make it invisible.

Start free — no credit card.