GET
/
v1
/
eth
/
validators
/
{validator_index_or_pubkey}
/
withdrawals
curl --request GET \
  --url https://api.rated.network/v1/eth/validators/{validator_index_or_pubkey}/withdrawals
{
  "next": "https://api.rated.network//v1/eth/validators/{validator_index_or_pubkey}/withdrawals?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/eth/validators/{validator_index_or_pubkey}/withdrawals?limit=10&offset=10",
  "results": [
    [
      {
        "amountInGwei": 100000,
        "consensusSlot": 19056,
        "epoch": 796,
        "executionBlockNumber": 19056,
        "slotIndex": 0,
        "validatorIndex": 0,
        "withdrawalAddress": "0x1123",
        "withdrawalIndex": 0
      }
    ]
  ]
}

Headers

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

Path Parameters

validator_index_or_pubkey
required
Required range: x >= 0

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

fromWithdrawalIndex
integer | null

Start withdrawal index. The lower bound of the range.

Required range: x >= 0
Example:

0

toWithdrawalIndex
integer | null

End withdrawal index. The upper bound of the range.

Required range: x >= 0
Example:

10

fromSlot
integer | null

Start slot multiple of 3k

Required range: x >= 0
toSlot
integer | null

End slot multiple of 3k

Required range: x >= 0
fromEpoch
integer | null

Start epoch. The lower bound of the range.

Required range: x >= 0
Example:

0

toEpoch
integer | null

End epoch. The upper bound of the range.

Required range: x >= 0
Example:

10

Response

200
application/json
Successful Response
previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
object[]
required