GET
/
v0
/
eth
/
blocks
curl --request GET \
  --url https://api.rated.network/v0/eth/blocks
{
  "data": [
    {
      "baseFeePerGas": 7413818806,
      "baselineMev": 0,
      "baselineMevWei": 0,
      "blockBuilderPubkeys": [
        "0x978a35c39c41aadbe35ea29712bccffb117cc6ebcad4d86ea463d712af1dc80131d0c650dc29ba29ef27c881f43bd587",
        "0x978a35c39c41aadbe35ea29712bccffb117cc6ebcad4d86ea463d712af1dc80131d0c650dc29ba29ef27c881f43bd587",
        "0x978a35c39c41aadbe35ea29712bccffb117cc6ebcad4d86ea463d712af1dc80131d0c650dc29ba29ef27c881f43bd587"
      ],
      "blockTimestamp": 123242323,
      "consensusBlockRoot": "\\\\x5668a71163c5ec5fcf34185deb36f0c3619a6f00a4ee0a547220f439913b6412",
      "consensusProposerDuty": "proposed",
      "consensusRewards": 41947807,
      "consensusSlot": 7502102,
      "epoch": 234440,
      "executionBlockHash": "\\\\x5b138bff063adf335b468150d91eb8c3025a02f6716e3dd4bcee42bf81bb0fe8",
      "executionBlockNumber": 18312479,
      "executionProposerDuty": "proposed",
      "executionRewards": 34330125,
      "executionRewardsWei": 34330125000000000,
      "feeRecipient": "\\\\x1f9090aae28b8a3dceadf281b0f12828e676c326",
      "missedConsensusRewards": 0,
      "missedExecutionRewards": 0,
      "relays": [
        "bloxroute_regulated",
        "flashbots",
        "bloxroute_maxprofit"
      ],
      "totalBurntFees": 88180442776786380,
      "totalGasUsed": 11894065,
      "totalPriorityFees": 34485815,
      "totalPriorityFeesValidator": 34330125,
      "totalPriorityFeesValidatorWei": 34330125000000000,
      "totalPriorityFeesWei": 34485815000000000,
      "totalRewards": 76277932,
      "totalRewardsMissed": 0,
      "totalSanctionedTransactions": 0,
      "totalTransactions": 156,
      "totalType0Transactions": 19,
      "totalType0TxFees": 23400203843039860,
      "totalType1Transactions": 0,
      "totalType1TxFees": 0,
      "totalType2Transactions": 137,
      "totalType2TxFees": 11085611875723216,
      "totalType3Transactions": 10,
      "totalType3TxFees": 1108561187572321,
      "validatorIndex": 888078
    }
  ],
  "next": "/v0/eth/blocks/?size=10&from=7502092",
  "page": {
    "size": 1
  },
  "total": 1
}

This endpoint gives a paginated list of all slots and blocks.

Here’s how to interpret the inputs required to operate it 👇

ParameterDescription
fromStart slot (integer)
sizeThe number of results included per page

Headers

X-Rated-Network
enum<string>
Available options:
mainnet,
holesky

Query Parameters

from
integer | null
Required range: x > 0
size
integer
default:
10

Response

200
application/json
Successful Response
page
object
required
total
integer
required
Required range: x > 0
data
object[]
required
next
string | null
required