Return information about a staker (registered validator).
GET/api/core/v3/validators/:bech32Address
Return information about a staker (registered validator).
Request
Path Parameters
The Account Address of the staker.
Responses
- 200
- 400
- 403
- 500
- 503
Successful operation.
- application/json
- Schema
- Example (from schema)
- AccountStakingResponse
Schema
The account address of the staker.
The epoch index until which the staker registered to stake.
The total stake of the pool, including delegators.
The stake of a staker.
The fixed cost of the staker, which it receives as part of its Mana rewards.
Shows whether staker was active recently.
The latest protocol version the staker supported.
The latest protocol hash the staker supported.
{
"address": "string",
"stakingEndEpoch": 0,
"poolStake": "string",
"validatorStake": "string",
"fixedCost": "string",
"active": true,
"latestSupportedProtocolVersion": 0,
"latestSupportedProtocolHash": "string"
}
{
"address": "rms1pqm4xk8e9ny5w5rxjkvtp249tfhlwvcshyr3pc0665jvp7g3hc875k538hl",
"stakingEndEpoch": 100,
"poolStake": "205000",
"validatorStake": "90000",
"fixedCost": "52000",
"active": true,
"latestSupportedProtocolVersion": 3,
"latestSupportedProtocolHash": "0x0c00425134785bf2dbe42e4ec7e288009ebdc38ced797beaa45d5213092021cb"
}
Unsuccessful operation: indicates that the provided data is invalid.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 400,
"message": "invalid data provided"
}
}
Unsuccessful operation: indicates that the endpoint is not available for public use.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 403,
"message": "not available for public use"
}
}
Unsuccessful operation: indicates that an unexpected, internal server error happened which prevented the node from fulfilling the request.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 500,
"message": "internal server error"
}
}
Unsuccessful operation: indicates that the node is not synced.
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
The application error code.
The error reason.
{
"error": {
"code": 503,
"message": "service unavailable"
}
}