> ## Documentation Index
> Fetch the complete documentation index at: https://lemoncash.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Deeplinks

> Direct your users to your Mini Apps using deeplinks

Deeplinks allow users to access Mini Apps directly from external sources like websites, QR codes, or other apps.

There are two URL schemes available depending on where the redirection originates:

### Universal Link (Recommended)

Use the `https://www.lemon.me` universal link in emails, social media posts, websites, QR codes, or any external source. It ensures the link works even if the app is not installed, falling back to the web.

| Deeplink             | URL                                                       |
| -------------------- | --------------------------------------------------------- |
| Mini App Detail Page | `https://www.lemon.me/app/mini-apps/detail/:mini-app-id`  |
| Launch Mini App      | `https://www.lemon.me/app/mini-apps/webview/:mini-app-id` |

### In-App

Use the `lemoncash://` scheme only when redirections occur within the Lemon Cash app (e.g., navigating between screens or Mini Apps).

| Deeplink             | URL                                              |
| -------------------- | ------------------------------------------------ |
| 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

<Warning>
  **Important**: You need to request your Mini App ID from the Lemon Cash team until the developer dashboard is ready.
</Warning>

## Usage Examples

From a Website or Email

```html theme={null}
<a href="https://www.lemon.me/app/mini-apps/detail/my-mini-app-id">
  Open My Mini App
</a>
```

## Related Concepts

<CardGroup cols={2}>
  <Card title="WebView Communication" icon="message" href="/concepts/webview-communication">
    Learn how Mini Apps communicate with the Lemon Cash app.
  </Card>

  <Card title="Getting Started" icon="rocket" href="/quickstart/quickstart">
    Get started building your Mini App.
  </Card>
</CardGroup>
