Get Staking Currencies

GET https://api.sfox.com/v1/staking/currencies

Retrieve a list staking-enabled assets along with the staking terms for that asset including the minimum amount, staking period, bonding, and unbonding period.

Response Body

KeyDescription

currency

The digital asset that may be staked

min_stake_amount

The minimum amount of this asset that may be staked in a given request

min_stake_period_minutes

The default period, in minutes, that the asset will be staking

stake_bonding_period_minutes

The amount of time, in minutes, after a staking request has been processed until the stake will begin accruing rewards

stake_unbonding_period_minutes

The amount of time, in minutes, that a completed stake of this asset will remain unavailable and not accruing rewards

Responses

200
{
    "data": [
        {
            "currency": "avax",
            "min_stake_amount": "25",
            "min_stake_period_minutes": 20160,
            "stake_bonding_period_minutes": 0,
            "stake_unbonding_period_minutes": 0
        }
    ]
}

Example Requests

curl -H 'Authorization: Bearer <API_TOKEN>' 
'https://api.sfox.com/v1/staking/currencies'

Last updated