> ## 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 Staking Options

### Get Staking Options

<PlatformTabs groupId="sdk" activeOptions={["web","flutter"]}>
  <PlatformTabItem value="web">
    ```typescript theme={null}
    const stakingOptions = await fuseSDK.stakingModule.getStakingOptions();
    ```
  </PlatformTabItem>

  <PlatformTabItem value="flutter">
    ```dart theme={null}
    final stakingOptionsData = await fuseSDK.stakingModule.getStakingOptions();
    stakingOptionsData.pick(
      onData: (List<StakingOption> data) {
        // Do you magic here
      },
      onError: (Exception err) {
        // Handle errors
      }
    );
    ```
  </PlatformTabItem>
</PlatformTabs>
