# View Rewards for Go Account

Source: https://developers.bitgo.com/docs/stake-rewards-go-account

## Overview

Staking delegates assets to a staking address. Depending on the asset, the staking address could be the validator's address, an address linked to your wallet, or a smart-contract address. Staking from Go Accounts enables BitGo to manage the staking process on your behalf. Once staked, you can view your overall positions, including delegations and accrued rewards.

## Prerequisites

* [Get Started](/docs/get-started-intro)
* Set up your [Go Account](/docs/wallet-types#go-account)
* [Stake Assets](/docs/stake-assets)

## Cookbook

Need just the steps? Expand the cookbook below to get started:

<Cookbook slug="stake-rewards-go-account" title="View Rewards for Go Account" />

## View Rewards

>Endpoint: [Get staking wallet attributes for Go Account](/reference/v1gostakingwalletgetattributesbycoinandaccount)

```shell cURL
export GO_ACCOUNT_ID="<YOUR_GO_ACCOUNT_ID>"
export ACCESS_TOKEN="<YOUR_ACCESS_TOKEN>"

curl -X GET \
  "https://app.bitgo-test.com/api/go-staking/v1/accounts/$GO_ACCOUNT_ID/coins" \
  -H 'Content-Type: application/json' \
  -H "Authorization: Bearer $ACCESS_TOKEN"
```
```js JavaScript
const goStakingWallet = wallet.toGoStakingWallet();
const goStakingWallets = await goStakingWallet.getGoStakingWallets();
```

#### Step Result

```json JSON
{
  "coins": [
    {
      "coin": "ofctsol",
      "activeStake": 0,
      "pendingStake": 0,
      "pendingUnstake": 0,
      "rewards": 0,
      "attributes": {
        "permissionAttributes": {
          "staking": {
            "enabled": true,
            "allowClientToUseOwnValidator": false
          },
          "unstaking": {
            "enabled": false,
            "disabledReason": "Not actively staking TSOL"
          }
        },
        "spendableAttributes": {
          "staking": {
            "fee": 0,
            "max": 0,
            "min": 0,
            "netMax": 46000000,
            "netMin": 0,
            "minStakeMore": 0
          },
          "unstaking": {
            "max": 0,
            "min": 0,
            "multipleDelegations": false,
            "requiresAmount": true,
            "requiresDelegationId": false,
            "requiresDelegationIds": false
          }
        },
        "disclaimerAttributes": {
          "staking": {
            "info": [
              "Staking takes up to the next epoch to activate (~2.1 days) and earn rewards."
            ],
            "rewardPercentageRate": 7,
            "stakeWarmupPeriodDesc": "1 epoch (2.1 days)"
          },
          "unstaking": {
            "info": [
              "Unstaking takes up to the next epoch to deactivate (~2.1 days) and withdraw."
            ],
            "unStakeCooldownPeriodDesc": "1 epoch (2.1 days)"
          },
          "nextRewards": {
            "rewardCycle": 181440
          }
        }
      }
    },
    {
      "coin": "ofctsui",
      "activeStake": 0,
      "pendingStake": 0,
      "pendingUnstake": 0,
      "rewards": 0,
      "attributes": {
        "permissionAttributes": {
          "staking": {
            "enabled": true,
            "allowClientToUseOwnValidator": false
          },
          "unstaking": {
            "enabled": false,
            "disabledReason": "Not actively staking TSUI"
          }
        },
        "spendableAttributes": {
          "staking": {
            "fee": 0,
            "max": 0,
            "min": 0,
            "netMax": 498000000,
            "netMin": 0,
            "minStakeMore": 0
          },
          "unstaking": {
            "max": 0,
            "min": 0,
            "multipleDelegations": false,
            "requiresAmount": true,
            "requiresDelegationId": false,
            "requiresDelegationIds": false
          }
        },
        "disclaimerAttributes": {
          "staking": {
            "info": [
              "Staking takes up to the next epoch to activate (24 hours) and earn rewards."
            ],
            "rewardPercentageRate": 2.3,
            "stakeWarmupPeriodDesc": "1 epoch (24 hours)"
          },
          "unstaking": {
            "info": [
              "Unstaking can take up to 24 hours. Rewards are pro-rated based on how much has been unstaked."
            ],
            "unStakeCooldownPeriodDesc": "1 epoch (24 hours)"
          },
          "nextRewards": {
            "rewardCycle": 86400
          }
        }
      }
    }
  ],
  "page": 1,
  "totalPages": 1,
  "totalElements": 2
}
```

## Next

Use the delegated balance information to [Unstake Assets](/docs/unstake-assets).

## See Also

* [API Reference: List staking requests by asset for Go Account](/reference/v1gostakingrequestlistbycoinandaccount)
* [API Reference: List staking requests for Go Account](/reference/v1gostakingrequestlistbyaccount)
* [API Reference: List staking rewards for Go Account](/reference/v1gostakingrewardslistbyaccount)
