# getNftsByWalletAddress

### Description

This endpoint retrieves NFTs by blockchain and wallet address.

{% code overflow="wrap" %}

```javascript
public getNftsByWalletAddress(chain: VyChain, walletAddress: string, query?: VyQuery_GetNftsByWalletAddress) : VyPromise<VyNftDto[]>
```

{% endcode %}

{% tabs %}
{% tab title="Details" %}
**Parameters**

| chain            | [VyChain](https://sdk.venly.io/sdk-reference/ts-js-v3/object-references/enum/vychain)                                                          | Blockchain to filter by               |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------- |
| walletAddress    | string                                                                                                                                         | Wallet address to get NFTs            |
| query (optional) | [VyQuery\_GetNftsByWalletAddress](https://sdk.venly.io/sdk-reference/ts-js-v3/object-references/wallet/queries/vyquery_getnftsbywalletaddress) | Query to filter the operation results |

**Returns**

VyPromise<[VyNftDto](https://sdk.venly.io/sdk-reference/ts-js-v3/object-references/wallet/vynftdto)\[]>\
NFTs of wallet retrieved successfully.
{% endtab %}
{% endtabs %}
