Skip to main content

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

    epochIndex integer

    The epoch index to query.

    Example: 20

Responses

Successful operation.

Schema
    epoch integer

    The epoch index of the committee.

    totalStake string

    The total amount of delegated and staked IOTA tokens in the selected committee.

    totalValidatorStake string

    The total amount of staked IOTA tokens in the selected committee.

    committee object[]

    The validators of the committee.

  • Array [
  • oneOf
    address string

    The account address of the validator.

    poolStake string

    The total stake of the pool, including delegators.

    validatorStake string

    The stake of a validator.

    fixedCost string

    The fixed cost of the validator, which it receives as part of its Mana rewards.

  • ]
Loading...