Deeplinks allow users to access Mini Apps directly from external sources like websites, QR codes, or other apps.
Deeplink URLs
Mini App Detail Page
lemoncash://app/mini-apps/detail/:mini-app-id
Launch Mini App
lemoncash://app/mini-apps/webview/:mini-app-id
Getting Your Mini App ID
Important: You need to request your Mini App ID from the Lemon Cash team until the developer dashboard is ready.
Usage Examples
From a Website
<a href="lemoncash://app/mini-apps/detail/my-mini-app-id">
Open My Mini App
</a>
From a QR Code
Generate a QR code with the deeplink URL:
lemoncash://app/mini-apps/webview/my-mini-app-id
From Another App
// React Native
Linking.openURL('lemoncash://app/mini-apps/webview/my-mini-app-id');
// Web
window.location.href = 'lemoncash://app/mini-apps/detail/my-mini-app-id';