> For the complete documentation index, see [llms.txt](https://saseul-gold.gitbook.io/saseul-gold-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://saseul-gold.gitbook.io/saseul-gold-docs/dex-api/token-info-api.md).

# Token Info API

Returns the token information corresponding to token\_address.

* **Raw Request Payload**

```
Sign : {
    "type": "GetTokenInfo",
    "token_address": "e7831c035f8ef5ab027b9e4153da4d12299a837c7433fba8eea2a02f2
}
```

* **Sigend Request Payload**

```
{
    "request": {
        "type": "GetTokenInfo",
        "token_address": "db6ea1edf4ed76bc9395100aa50bdaf43c428d77f5a3c4790d5646
    },
    "public_key": "626e9491b8be43cc220848ea645cb60c4ae6f8890d94af08ab112210871",
    "signature": "d349340c8f45d4aaf086247004c1d49e0af076c80ef6486395c9b84bde8"
}
```

* **Response**

```
{
    "owner": "4a8fd2ebb308370a689c3ef47cb83ba182683def3d4f",
    "symbol": "ABC",
    "name": "my coin",
    "supply": "10000000"
}
```
