# getInfo

Your application can request information about the user's wallet with the `getInfo` method.

No request parameters are required:

<pre class="language-tsx"><code class="lang-tsx">  import { Wallet } from 'sats-connect'
  
  const handleGetInfo = async () => {
    try {
      const response = await Wallet.request("getInfo", null);
      console.log(response);
    } catch (err) {
<strong>      console.log(err);
</strong>    }
  };
</code></pre>

The `getInfo` method returns a Promise that resolves to the GetInfoResult object:

<table><thead><tr><th width="162">Property</th><th>Description</th></tr></thead><tbody><tr><td><code>version</code> </td><td>a string representing the wallet's version number</td></tr><tr><td><code>methods</code></td><td>an array of strings representing the methods exposed by the provider </td></tr></tbody></table>


---

# Agent Instructions: 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:

```
GET https://docs.xverse.app/sats-connect/wallet-providers/getinfo.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
