> For the complete documentation index, see [llms.txt](https://sdk.venly.io/sdk-reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sdk.venly.io/sdk-reference/c-sdk-v3/function-references/wallet/non-fungibles/getwalletscontainingtokensfrom.md).

# GetWalletsContainingTokensFrom

### Description

This endpoint returns the wallet address(es) which contain NFTs from a specific NFT contract address.

{% code overflow="wrap" %}

```csharp
public static VyTask<VyWalletBalanceDto> GetWalletsContainingTokensFrom(string chain, string address, VyQuery_GetWalletsContainingTokensFrom query = null)
```

{% endcode %}

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

| chain            | string                                                                                                                                        | The blockchain of the NFT             |
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------- |
| address          | string                                                                                                                                        | The contract address of the NFT       |
| query (optional) | [VyQuery\_GetWalletsContainingTokensFrom](/sdk-reference/c-sdk-v3/object-references/wallet/queries/vyquery_getwalletscontainingtokensfrom.md) | Query to filter the operation results |

**Returns**

VyTask<[VyWalletBalanceDto](/sdk-reference/c-sdk-v3/object-references/wallet/vywalletbalancedto.md)>\
Wallet address(es) retrieved successfully containing NFTs from a specific NFT contract.
{% endtab %}
{% endtabs %}
