Committees by state, epoch, index, and slot

📘

No response in the interactive API

The response to the call might be too big for ReadMe to handle, so if you are not getting it here, copy the CURL example and run in your terminal—this will work.

The eth/v1/beacon/states/{state_id}/committees method is a significant API endpoint in the Ethereum Beacon Chain. It provides comprehensive information about the committees for a given state. In the context of Ethereum, committees are groups of validators assigned to specific duties, such as proposing and attesting to blocks. Understanding the composition and assignments of these committees is crucial for validators and network participants, as it impacts their roles and responsibilities in the network's consensus process.

👍

Get you own node endpoint today

Start for free and get your app to production levels immediately. No credit card required.

You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • {state_id}: This parameter specifies the state identifier for which the committee information is being requested. It can be a specific slot number, an epoch number, a block root, or special values like 'genesis' or 'head'.

Response

  • array — list of committee objects.
    • Each object in the array represents a committee at the specified state, containing:
      • index — the index or identifier of the committee. This is used to distinguish different committees within the same epoch or state.
      • slot — the slot number at which the committee is assigned duties. Slots are discrete time intervals in the Beacon Chain when various operations occur.
      • validators — a list of validator indices that are members of this committee. These indices identify the specific validators assigned to the committee's duties.

The eth/v1/beacon/states/{state_id}/committees method is vital for validators and network operators in the Ethereum ecosystem. It provides essential insights into how validators are grouped into committees and assigned duties, which is fundamental to the network's operation and security.

Language
Click Try It! to start a request and see the response here!