> For the complete documentation index, see [llms.txt](https://docs.senderwallet.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.senderwallet.io/guide/getting-started.md).

# Getting Started

To build with Sender, install Sender in your preferred browser. [Download here](https://senderwallet.io/)

Once Sender is installed and running, you will find that newly opened browser tabs have a `window.near` or `window.sender` object available in the developer console. Your website now can interact with Sender via the object.

## Sender Detection <a href="#web3-browser-detection" id="web3-browser-detection"></a>

### For version 1.11.7 and below

To verify if the browser has installed Sender Wallet for Near chain, you can copy and paste the code snippet below in the developer console of your web browser:

```javascript
// For near chain
if (typeof window.near !== 'undefined' && window.near.isSender) {
  console.log('Sender is installed!');
}
```

You can review the full API for the `window.near` object [here](/api-reference/near/near-provider-api.md).

#### Integration Examples

* Example: <https://github.com/SenderWallet/sender-wallet-dapp-example>&#x20;
* Guest Book: coming soon

### For version 2.0.0 and above

To verify if the browser has installed Sender Wallet for above version 2.0.0, you can copy and paste the code snippet below in the developer console of your web browser:

```javascript
// For version 2.0.0 and above, you can use window.sender.near to interact with near chain,
// but you can still use window.near api to connect near chain.
if (typeof window.sender !== 'undefined' && window.sender.near) {
    console.log('Sender is installed!');
}

// For ethereum chain
if (typeof window.sender !== 'undefined' && window.sender.ethereum) {
    console.log('Sender is installed!');
}
```

You can review the full API for the `window.sender.ethereum` object [here](/api-reference/ethereum/ethereum-provider-api.md).

#### Integration Examples

* Example: <https://metamask.github.io/test-dapp/>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.senderwallet.io/guide/getting-started.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
