> ## 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 Change in the Last 24 hours

### Get Token Price Change in the last 24 hours

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

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