# getErc1155Token

### Description

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

{% code overflow="wrap" %}

```javascript
public getErc1155Token(contractAddress: string, tokenId: string, chain: VyChain) : VyPromise<VyErc1155TokenDto>
```

{% 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           | [VyChain](https://sdk.venly.io/sdk-reference/ts-js-v3/object-references/enum/vychain) | The blockchain of the contract.                          |

**Returns**

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