Get vesting balance statistics
GEThttps://api.n00.testnet.vega.rocks/api/v2/party/vesting/stats/:partyId
Get information about a party's vesting rewards
Request
Path Parameters
partyId stringrequired
Party ID to query the vesting stats for.
Responses
- 200
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
epochSeq uint64
Epoch for which this information is valid.
partyId string
Party ID.
quantumBalance string
The balance of the party, in quantum.
rewardBonusMultiplier string
Reward bonus multiplier.
summedQuantumBalance string
The balance of the party and derived keys, in quantum.
summedRewardBonusMultiplier string
Bonus multiplier applied on the reward, summed across all derived accounts.
{
"epochSeq": "string",
"partyId": "string",
"quantumBalance": "string",
"rewardBonusMultiplier": "string",
"summedQuantumBalance": "string",
"summedRewardBonusMultiplier": "string"
}
An internal server error
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
- curl
- python
- go
- nodejs
- CURL
curl -L -X GET 'https://api.n00.testnet.vega.rocks/api/v2/party/vesting/stats/:partyId' \
-H 'Accept: application/json'
ResponseClear