# 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" %}

```javascript
public getWalletsContainingTokenIdFrom(chain: VyChain, contractAddress: string, tokenId: string, query?: VyQuery_GetWalletsContainingTokenIdFrom) : VyPromise<VyWalletBalanceDto>
```

{% endcode %}

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

| chain            | [VyChain](https://sdk.venly.io/sdk-reference/ts-js-v3/object-references/enum/vychain)                                                                            | 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](https://sdk.venly.io/sdk-reference/ts-js-v3/object-references/wallet/queries/vyquery_getwalletscontainingtokenidfrom) | Query to filter the operation results    |

**Returns**

VyPromise<[VyWalletBalanceDto](https://sdk.venly.io/sdk-reference/ts-js-v3/object-references/wallet/vywalletbalancedto)>\
Wallet address retrieved successfully containing a specific NFT.
{% endtab %}
{% endtabs %}
