> 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/getwalletscontainingtokenidfrom.md).

# GetWalletsContainingTokenIdFrom

### Description

This endpoint fetches the wallet that contain a specific NFT. The wallets are filtered by blockchain, contract address of the NFT, and the token `ID`

{% code overflow="wrap" %}

```csharp
public static VyTask<VyWalletBalanceDto> GetWalletsContainingTokenIdFrom(eVyChain chain, string contractAddress, string tokenId, VyQuery_GetWalletsContainingTokenIdFrom query = null)
```

{% endcode %}

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

| chain            | [eVyChain](/sdk-reference/c-sdk-v3/object-references/enum/evychain.md)                                                                          | The blockchain to filter by              |
| ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
| contractAddress  | string                                                                                                                                          | The contract address of the specific NFT |
| tokenId          | string                                                                                                                                          | The token \`ID\` of the NFT              |
| query (optional) | [VyQuery\_GetWalletsContainingTokenIdFrom](/sdk-reference/c-sdk-v3/object-references/wallet/queries/vyquery_getwalletscontainingtokenidfrom.md) | Query to filter the operation results    |

**Returns**

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