> ## 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 Price Change in Interval

### Get Price Change in Interval

<PlatformTabs groupId="sdk" activeOptions={["web","flutter"]}>
  <PlatformTabItem value="web">
    ```typescript theme={null}
    const tokenAddress = "TOKEN_ADDRESS";
    const intervalData = await fuseSDK.tradeModule.interval(
      tokenAddress,
      TimeFrame.day
    );
    ```
  </PlatformTabItem>

  <PlatformTabItem value="flutter">
    ```dart theme={null}
    final tokenAddress = 'TOKEN_ADDRESS';
    final intervalData = await fuseSDK.tradeModule.interval(tokenAddress, TimeFrame.day);
    intervalData.pick(
      onData: (List<IntervalStats> stats) {
        // Do you magic here
      },
      onError: (err) {
        // Handle errors
      },
    );
    ```
  </PlatformTabItem>
</PlatformTabs>
