Welcome
Guides
- Fetch Balances and Transfers
- Funds Transfers
- Copper Network
- ClearLoop
- Copper Unlimited Online
- Fees Vaults
- DeFi
- Staking
- Webhooks
Staking
Get active stakes
GET
/
staking
/
active-stakes
curl --request GET \
--url https://api.copper.co/platform/staking/active-stakes
{
"activeStakes": [
{
"activeStake": {
"activeStakedAmount": "<string>",
"claimableRewardsAmount": "<string>",
"endTimeSeconds": "<string>",
"pool": {
"extra": {
"netuid": "<string>"
},
"poolId": "<string>",
"poolName": "<string>",
"totalBonded": "<string>"
},
"pools": [
{
"extra": {
"netuid": "<string>"
},
"poolId": "<string>",
"poolName": "<string>",
"totalBonded": "<string>"
}
],
"readyToRedelegate": true,
"readyToUndelegateStakingPermissions": true,
"readyToUnstake": true,
"readyToUnstakeAt": "<string>",
"requireChillToUnstake": true,
"rewardRate": "<string>",
"rewardsAutoRestake": true,
"rewardsRequireClaim": true,
"stakeAddress": "<string>",
"warning": {
"code": "<string>",
"message": "<string>"
}
},
"activeStakeId": "<string>",
"createdAt": "<string>",
"currency": "<string>",
"depositTargetId": "<string>",
"mainCurrency": "<string>",
"organizationId": "<string>",
"portfolioId": "<string>",
"updatedAt": "<string>"
}
]
}
Query Parameters
Return stakes only for specific portfolio
Filter by the staked currency
Filter by the main currency (blockchain network) for staking
Limit for pagination
Offset for pagination
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://api.copper.co/platform/staking/active-stakes
{
"activeStakes": [
{
"activeStake": {
"activeStakedAmount": "<string>",
"claimableRewardsAmount": "<string>",
"endTimeSeconds": "<string>",
"pool": {
"extra": {
"netuid": "<string>"
},
"poolId": "<string>",
"poolName": "<string>",
"totalBonded": "<string>"
},
"pools": [
{
"extra": {
"netuid": "<string>"
},
"poolId": "<string>",
"poolName": "<string>",
"totalBonded": "<string>"
}
],
"readyToRedelegate": true,
"readyToUndelegateStakingPermissions": true,
"readyToUnstake": true,
"readyToUnstakeAt": "<string>",
"requireChillToUnstake": true,
"rewardRate": "<string>",
"rewardsAutoRestake": true,
"rewardsRequireClaim": true,
"stakeAddress": "<string>",
"warning": {
"code": "<string>",
"message": "<string>"
}
},
"activeStakeId": "<string>",
"createdAt": "<string>",
"currency": "<string>",
"depositTargetId": "<string>",
"mainCurrency": "<string>",
"organizationId": "<string>",
"portfolioId": "<string>",
"updatedAt": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.