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

# GetNft

### Description

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

{% code overflow="wrap" %}

```csharp
public static VyTask<VyNftDto> GetNft(eVyChain chain, string contractAddress, string tokenId)
```

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

**Returns**

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