> ## 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 the list of Supported Tokens

### Get the list of Supported Tokens

<PlatformTabs groupId="sdk" activeOptions={["web","flutter"]}>
  <PlatformTabItem value="web">
    ```typescript theme={null}
    const tokenList = await fuseSDK.tradeModule.fetchTokens();
    console.log(`Tokens: ${tokenList.length}`);
    ```
  </PlatformTabItem>

  <PlatformTabItem value="flutter">
    ```dart theme={null}
    final tokensData = await fuseSDK.tradeModule.fetchTokens();
    tokensData.pick(
      onData: (List<TokenDetails> tokens) {
        // Do you magic here
      },
      onError: (err) {
        // Handle errors
      },
    );
    ```
  </PlatformTabItem>
</PlatformTabs>
