Launch announcement

Teams, projects, and roles — finally on Redirectly

A new multi-tenant dashboard built for teams shipping together. Organizations, multiple projects, and role-based access. A new foundation for the next era of Redirectly.

LaunchingJune 1, 2026dashboard.redirectly.app

Already a Redirectly user? Sign in

OrganizationsMultiple projectsRoles & permissionsNew API v3Same fast redirectsExisting plans carry over
app.redirectly.dev
links.redirectly.app/summer-saleiOSAndroidWeb
links.redirectly.app/referral/jakeiOSAndroid
links.redirectly.app/verify?t=abc123iOSAndroidWeb
1,247Clicks today
312Installs
24.7%Conversion
For existing Redirectly users

Your URLs work. Your plan carries over. Nothing breaks.

On June 1 every *.redirectly.app/<slug> redirect keeps resolving with no changes. Your default organization and project are created automatically the first time you sign in to the new dashboard — your username becomes your project slug, so every existing URL stays the same.

  • Your subscription carries over at the same price
  • Your API keys keep working alongside new v3 keys
  • Your SDK configs (Flutter, React Native) need no changes
  • Your analytics and click tracking are uninterrupted
  • Your links appear in the new dashboard automatically
  • Your account stays signed in — no re-onboarding
01 · Organizations

One account, one org, many projects

Bring your team in. Every Redirectly account becomes an organization, and your team joins under one roof. You can belong to multiple orgs — a personal one and your work one — and switch between them in a click.

  • Owner — full control, billing, and member management
  • Admin — invite and manage members, configure projects
  • Editor — create and edit links, run campaigns
  • Viewer — read-only access to links and analytics
02 · Multiple projects

Ship one product or twenty. Same dashboard.

Every project gets its own subdomain and its own set of links. Your existing subdomain becomes your first project on June 1 — nothing to configure. Add new projects without spinning up new accounts, and switch between them from the org sidebar.

03 · New API v3

HMAC-signed keys. Per-project scoping. Built for production.

New rdy_live_* API keys are scoped to a single project and can be HMAC-signed for webhook verification. Existing v1 and v2 keys keep working — no client migration required. Full docs land at dashboard.redirectly.app/docs/api/v3 on launch day.

Features
Your links break at the app store. Ours don't.

A complete deep linking platform for mobile apps. No enterprise contract needed.

Deferred Deep Linking

Links survive app installation. User clicks → store → installs → lands exactly where they should.

Platform Routing

Auto-detect iOS or Android. Route to the right store. Desktop gets a fallback page with QR code.

Install Attribution

Know which campaigns, creatives, and channels drove each install. Organic vs. paid.

Live Dashboard

Clicks, installs, UTMs, geo data. Real-time, not overnight batch reports.

Custom Subdomains

links.redirectly.app — your brand on every deep link.

Native SDKs

First-class Flutter on pub.dev. React Native included. Built by us, not community forks.

How it works
Three steps. Three lines of code.

Install the SDK, create a link, listen for clicks.

01

Install the SDK

Add flutter_redirectly to your app. Zero config. Under 50KB.

flutter pub add flutter_redirectly
02

Listen for deep links

On app start, listen for incoming links. Works for both new installs and existing users.

final redirectly = FlutterRedirectly(config);

redirectly.onLinkClick.listen((click) {
  navigator.push(click.originalUrl);
});
03

Create links with attribution

Generate deep links with UTM params, referral data, or verification tokens. Share anywhere.

final link = await redirectly.createLink(
  target: "myapp://promo",
  params: {
    "utm_source": "facebook",
    "utm_campaign": "summer_sale",
  },
);