# 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);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.relysia.com/token/details.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
