Skip to main content
GET
/
v1
/
eth
/
builderPayments
Get information for block builder payments by slot.
curl --request GET \
  --url https://api.rated.network/v1/eth/builderPayments \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/eth/builderPayments?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/eth/builderPayments?limit=10&offset=10",
  "results": [
    [
      {
        "builderPaymentTransactionHashes": [
          "0xeb711eb3d4e9ae77e33d88a439f39b3a154d96afa46d41286ef533c190d8e3a3"
        ],
        "consensusSlot": 7502102,
        "executionBlockNumber": 18312479
      }
    ]
  ]
}
This endpoint gives a paginated list of all slots and blocks, and the corresponding transaction hashes where block builders made payments to proposing validators where relevant. The results can be filtered across a range of slots (from and to parameters).

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

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

Query Parameters

limit
integer
default:10

The number of results returned per page

offset
integer
default:0

The number of results to skip before starting to return

from
integer | null
Required range: x >= 0
to
integer | null
Required range: x >= 0

Response

Successful Response

previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
BuilderPayments · object[]
required