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

# Browse

> Open web pages inside Phantom's in-app browser using the browse deeplink with a QR code or direct link.

Deeplinks provide a convenient way for users to open web apps within Phantom. Using their phone's camera, users can scan a QR code to open a page directly within Phantom's in-app browser. If a web app detects that a user is on mobile, it can also prompt the user to open a specific page within Phantom's in-app browser.

The `browse` deeplink can be used before a [Connect](/phantom-deeplinks/provider-methods/connect) event takes place, as it does not require a `session` param.

<Info>
  The `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.
</Info>

## URL structure

```
https://phantom.app/ul/browse/<url>?ref=<ref>
```

## Parameters

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

## Example

The following is an example request to open an [NFT listed on Magic Eden](https://magiceden.io/item-details/8yjN8iRuoiYiKW487cnW9vn6mLBR5E8aCNKsBRmTP9vN):

```
https://phantom.app/ul/browse/https%3A%2F%2Fmagiceden.io%2Fitem-details%2F8yjN8iRuoiYiKW487cnW9vn6mLBR5E8aCNKsBRmTP9vN?ref=https%3A%2F%2Fmagiceden.io
```
