# getNft

### Description

This endpoint retrieves a specific NFT information by chain, contract address, and the token `ID`.

{% code overflow="wrap" %}

```javascript
public getNft(chain: VyChain, contractAddress: string, tokenId: string) : VyPromise<VyNftDto>
```

{% 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 NFT |
| tokenId         | string                                                                                | The token \`ID\` of the NFT     |

**Returns**

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