Return the information of committee members.
GET/api/core/v3/committee
Return the information of committee members at the given epoch index. If epoch index is not provided, the current committee members are returned.
Request
Query Parameters
The epoch index to query.
Responses
- 200
- 400
- 403
- 500
- 503
Successful operation.
- application/json
- Schema
- Example (from schema)
- CommitteeResponse
Schema
- Array [
- CommitteeMember
- ]
The epoch index of the committee.
The total amount of delegated and staked IOTA tokens in the selected committee.
The total amount of staked IOTA tokens in the selected committee.
committee object[]
The validators of the committee.
The account address of the validator.
The total stake of the pool, including delegators.
The stake of a validator.
The fixed cost of the validator, which it receives as part of its Mana rewards.
{
"epoch": 0,
"totalStake": "string",
"totalValidatorStake": "string",
"committee": [
null
]
}
{
"epoch": 10,
"totalStake": "900000000",
"totalValidatorStake": "60000000",
"committee": [
{
"address": "rms1pqm4xk8e9ny5w5rxjkvtp249tfhlwvcshyr3pc0665jvp7g3hc875k538hl",
"poolStake": "200000",
"validatorStake": "100000",
"fixedCost": "50000"
},
{
"address": "rms1pp4wuuz0y42caz48vv876qfpmffswsvg40zz8v79sy8cp0jfxm4kunflcgt",
"poolStake": "205000",
"validatorStake": "90000",
"fixedCost": "52000"
}
]
}
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"
}
}