Skip to main content
POST
/
api
/
v2
/
ethereum
/
block
/
rewards
Details
curl --request POST \
  --url https://beaconcha.in/api/v2/ethereum/block/rewards \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "block": {
    "view": "latest"
  },
  "chain": "mainnet"
}
'
{
  "data": {
    "total_reward": {
      "amount": "<string>",
      "recipient": {
        "address": "<string>",
        "is_contract": true
      }
    },
    "priority_fees": {
      "amount": "<string>",
      "recipient": {
        "address": "<string>",
        "is_contract": true
      }
    },
    "execution_reference": {
      "block": 1,
      "hash": "<string>"
    },
    "mev": {
      "amount": "<string>",
      "recipient": {
        "address": "<string>",
        "is_contract": true
      }
    },
    "mining": {
      "recipient": {
        "address": "<string>",
        "is_contract": true
      },
      "static_block_reward": "<string>",
      "uncle_inclusion_reward": "<string>"
    },
    "consensus_reference": {
      "slot": 1,
      "epoch": 1,
      "block_root": "<string>"
    },
    "finality": "not_finalized"
  }
}

Authorizations

Authorization
string
header
required

Authorization header with value: Bearer YOUR_TOKEN. Refer to the API Keys section to create your API key.

Body

application/json
block
Number · object
required

Specify a block using one of the following methods.

  • Block number
  • View: "latest" or "finalized"
chain
enum<string>
default:mainnet

The Ethereum chain to query.

Available options:
mainnet,
hoodi

Response

Successful response.

Response containing basic information about the block reward.

data
object
required