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.
Already a Redirectly user? Sign in
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.
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.
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.
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.
A complete deep linking platform for mobile apps. No enterprise contract needed.
Links survive app installation. User clicks → store → installs → lands exactly where they should.
Auto-detect iOS or Android. Route to the right store. Desktop gets a fallback page with QR code.
Know which campaigns, creatives, and channels drove each install. Organic vs. paid.
Clicks, installs, UTMs, geo data. Real-time, not overnight batch reports.
links.redirectly.app — your brand on every deep link.
First-class Flutter on pub.dev. React Native included. Built by us, not community forks.
Install the SDK, create a link, listen for clicks.
Add flutter_redirectly to your app. Zero config. Under 50KB.
flutter pub add flutter_redirectly
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);
});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",
},
);