> For the complete documentation index, see [llms.txt](https://docs.solflare.com/solflare/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.solflare.com/solflare/technical/deeplinks/other-methods/browse.md).

# Browse

Deeplinks make it easy for users to open web apps within Solflare. Users can scan a QR code with their phone's camera to open a page directly within Solflare's in-app browser. If a web app detects that a user is using a mobile device, it can prompt the user to open a specific page in Solflare's in-app browser.

The `browse` deeplink can be used before a Connect event takes place, as it does not require a `session` param. Please review [Integrating with Solflare](https://docs.solflare.com/solflare/technical/integrate-solflare) for more information on how apps can interact with Solflare from within the in-app browser.

{% hint style="info" %}
`browse` deeplinks are not intended to be pasted into mobile web browsers. These deeplinks must either be handled by an app or clicked on by an end user.
{% endhint %}

### **URL Structure**

```
https://solflare.com/ul/v1/browse/<url>?ref=<ref>
```

### **Parameters**

* `url` **(required)**: The URL that should open within Solflare's in-app browser, URL-encoded.
* `ref` **(required)**: The URL of the requesting app, URL-encoded

## **Example**

Please refer to the [browse](https://github.com/solflare-wallet/deep-link-sample-app/blob/master/App.tsx#L321-L327) method implemented in our demo application.
