> 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/token/mint-tokens/geterc1155token.md).

# 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](/sdk-reference/c-sdk-v3/object-references/enum/evychain.md) | The blockchain of the contract.                          |

**Returns**

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