> 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/ts-js-v3/function-references/wallet/non-fungibles/getnft.md).

# 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](/sdk-reference/ts-js-v3/object-references/enum/vychain.md) | The blockchain to filter by     |
| --------------- | -------------------------------------------------------------------- | ------------------------------- |
| contractAddress | string                                                               | The contract address of the NFT |
| tokenId         | string                                                               | The token \`ID\` of the NFT     |

**Returns**

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