RealSimpleLinks

Multi-tenant Deferred Deep Linking, Built for the Edge

Our serverless architecture is designed to scale seamlessly and provide excellent uptime for your global audience. Route users to the exact right screen in your app—even if they have to install it first.

Why Serverless Edge Infrastructure?

By utilizing a modern serverless approach, our platform guarantees high availability and massive concurrency. Every link click is processed by dedicated Cloudflare Edge Workers with globally replicated KV caching. This means there are no traditional database bottlenecks, ensuring milliseconds of latency no matter where your users are located geographically.

How it Works (The Technical Flow)

1

Click & Capture

A user clicks your short link. Our Edge Worker instantly routes them and captures an ephemeral, privacy-safe device fingerprint.

2

Install & Open

The user is redirected to the App Store or Google Play to download your native mobile app.

3

Resolve Context

Upon first app launch, our Flutter SDK retrieves the original link payload and navigates the user directly to the intended content.

Drop-in SDK Routing

Our lightweight mobile packages watch for cold starts and link distributions automatically. Maintain routing state context perfectly across multi-tenant infrastructures seamlessly.

lib/main.dart
// Initialize the Flutter SDK and route your users instantly
RealSimpleLinks.init(apiKey: 'pk_live_your_publishable_key');

RealSimpleLinks.onDeepLink((DeepLinkResult result) {
  if (result.confidence == Confidence.high || result.confidence == Confidence.referrer) {
    navigator.pushNamed(result.deepLinkUri);
  }
});