Logo
Fireblocks API Documentation

get Summary

GET {{baseUrl}}/staking/positions/summary

Return a summary of all vaults, categorized by their status (active, inactive), the total amounts staked and total rewards per-chain.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "active": [ { "chainDescriptor": "<string>", "amount": "<string>" }, { "chainDescriptor": "<string>", "amount": "<string>" } ], "inactive": [ { "chainDescriptor": "<string>", "amount": "<string>" }, { "chainDescriptor": "<string>", "amount": "<string>" } ], "rewardsAmount": [ { "chainDescriptor": "<string>", "amount": "<string>" }, { "chainDescriptor": "<string>", "amount": "<string>" } ], "totalStaked": [ { "chainDescriptor": "<string>", "amount": "<string>" }, { "chainDescriptor": "<string>", "amount": "<string>" } ] }



Curl
curl -X GET 'https://api.fireblocks.io/v1/staking/positions/summary' -H 'Accept: application/json'

ENDPOINTS