> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fuse.io/llms.txt
> Use this file to discover all available pages before exploring further.

# GET Token Details

### Get Token Details

Allows you to retrieve detailed information about a specific ERC20 token. This includes the token's name, symbol, decimal places, and total supply. To use the `getTokenDetails` function, you need to provide the contract address of the ERC20 token that you want to retrieve information from. Once you call the function, it will return a `TokenDetails` object that contains all the relevant information about the token.

<PlatformTabs groupId="sdk" activeOptions={["web","flutter"]}>
  <PlatformTabItem value="web">
    ```typescript theme={null}
    const tokenAddress = "TOKEN_ADDRESS";
    const tokenDetails = await fuseSDK.explorerModule.getTokenDetails(tokenAddress);
    ```
  </PlatformTabItem>

  <PlatformTabItem value="flutter">
    ```dart theme={null}
    final String tokenAddress = 'TOKEN_ADDRESS';
    final tokenDetailsData = await fuseSDK.explorerModule.getTokenDetails(
      tokenAddress,
    );

    tokenDetailsData.pick(
      onData: (TokenDetails tokenList) {
        // Do you magic here
      },
      onError: (err) {
        // Handle errors
      },
    );
    ```
  </PlatformTabItem>
</PlatformTabs>
