# Details

Fetch the latest state of your STAS token and the issuance details. The only parameter required is tokenID, which you will have if you issued a token via the /issue endpoint or can be found on the manage tokens section of Relysia Wallet.

```javascript
var parameters = {
    tokenID: 'ca7a5c64543850de318639334a5aaa65947914cb-MYNFT'
}
const response = await relysia.contracts.v2.tokenDetails(parameters);
```

In the event that the item in question is an NFT, it is possible to expand your search parameters by including a designated serial number in addition to the token ID.

```javascript
var parameters = {
    tokenID: 'ca7a5c64543850de318639334a5aaa65947914cb-MYNFT-2'
}
const response = await relysia.contracts.v2.tokenDetails(parameters);
```
