# 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](https://sdk.venly.io/sdk-reference/c-sdk-v3/object-references/enum/evychain) | The blockchain to filter by     |
| --------------- | --------------------------------------------------------------------------------------- | ------------------------------- |
| contractAddress | string                                                                                  | The contract address of the NFT |
| tokenId         | string                                                                                  | The token \`ID\` of the NFT     |

**Returns**

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