> ## 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 Price

### Get Token Price

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

  <PlatformTabItem value="flutter">
    ```dart theme={null}
    final tokenAddress = 'TOKEN_ADDRESS';
    final priceData = await fuseSDK.tradeModule.price(tokenAddress);
    priceData.pick(
      onData: (String tokenPrice) {
        // Do you magic here
      },
      onError: (err) {
        // Handle errors
      },
    );
    ```
  </PlatformTabItem>
</PlatformTabs>
