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

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

Path Parameters

withdrawal_address
string
required

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

toDate
string | null

End date

Examples:

"2023-12-31"

fromDate
string | null

Start date

Examples:

"2023-01-01"

fromWithdrawalIndex
integer | null

Start withdrawal index. The lower bound of the range.

Required range: x >= 0
Examples:

0

toWithdrawalIndex
integer | null

End withdrawal index. The upper bound of the range.

Required range: x >= 0
Examples:

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
Examples:

0

toEpoch
integer | null

End epoch. The upper bound of the range.

Required range: x >= 0
Examples:

10

Response

200
application/json

Successful Response

The response is of type object.