Create, manage, and analyze deep links that route users to the exact in-app location — across iOS, Android, and web. No broken flows. No lost conversions.
Every click tracked. Every conversion attributed. See exactly how your deep links perform across platforms and campaigns.
Route users to the exact in-app location — no landing pages, no friction. Sub-10ms resolution across 190+ countries.
Track clicks, conversions, platform splits, and attribution across every campaign in real time.
Links survive app installs. Users land exactly where you sent them — even after download and first launch.
iOS Universal Links and Android App Links configured automatically. No manual entitlement juggling.
Define custom fallback paths per platform. Desktop, mobile web, and store redirects handled gracefully.
RESTful API with SDK support for iOS, Android, React Native, and Flutter. Full OpenAPI spec included.
One API call resolves your deep link and routes users to the exact screen — on iOS, Android, Flutter, and Web. Full SDK support included.
// Map SCREEN_KEYS to Flutter routes
static const Map<String, String> screenMap = {
'DOCTOR_PROFILE': '/doctor-profile',
'APPOINTMENT_LIST': '/appointments',
// add more screen keys...
}
// Resolve link by token
static Future<void> resolveByToken(String token) async {
final response = await http.get(
Uri.parse('$baseUrl/api/links/token/$token'));
final data = jsonDecode(response.body);
if (data['found'] == true) {
final route = screenMap[data['screen']];
Navigator.pushNamed(context, route!);
}
}Loading plans...
Start with a free account and upgrade when you need more. No credit card required.
Get started