# GetErc1155Token

### Description

This endpoint fetches the details of a specific token by tokenId.

{% code overflow="wrap" %}

```csharp
public static VyTask<VyErc1155TokenDto> GetErc1155Token(string contractAddress, string tokenId, eVyChain chain)
```

{% endcode %}

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

| contractAddress | string                                                                                  | The contract address.                                    |
| --------------- | --------------------------------------------------------------------------------------- | -------------------------------------------------------- |
| tokenId         | string                                                                                  | The \`id\` of the token whose details you want to fetch. |
| chain           | [eVyChain](https://sdk.venly.io/sdk-reference/c-sdk-v3/object-references/enum/evychain) | The blockchain of the contract.                          |

**Returns**

VyTask<[VyErc1155TokenDto](https://sdk.venly.io/sdk-reference/c-sdk-v3/object-references/token/vyerc1155tokendto)>
{% endtab %}
{% endtabs %}
