# Fetch NWC Info

<mark style="color:blue;">`GET`</mark> `https://api.getalby.com/nwc/nip47/info`

Every NWC-enabled wallet has a pubkey according to the NWC specification.\
This <mark style="color:blue;">`GET`</mark> request returns a pubkey's NWC capabilities (if any)

#### Request Body

<table><thead><tr><th width="157">Name</th><th width="107">Type</th><th>Description</th></tr></thead><tbody><tr><td>relayUrl</td><td>string</td><td>If no relay is provided, it uses the default relay (wss://relay.getalby.com/v1)</td></tr><tr><td>walletPubkey<mark style="color:red;">*</mark></td><td>string</td><td>Pubkey of the NWC Wallet Provider</td></tr></tbody></table>

#### Response

{% tabs %}
{% tab title="200: OK" %}

```javascript
{
  "event": {
    "id": "a16ye1391c22xx........xxxxx",
    "pubkey": "a16y69effexxxx........xxxxx",
    "created_at": 1708336682,
    "kind": 13194,
    "tags": [],
    "content": "pay_invoice,pay_keysend,get_balance,get_info,make_invoice,lookup_invoice,list_transactions",
    "sig": "<signature>"
  }
}
```

{% endtab %}
{% endtabs %}
