Skip to main content
GET
/
v1
/
eth
/
entities
/
{withdrawal_address}
/
withdrawals
Get withdrawal metrics for Withdrawal Addresses
curl --request GET \
  --url https://api.rated.network/v1/eth/entities/{withdrawal_address}/withdrawals \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "epoch": 1,
      "consensusSlot": 1,
      "executionBlockNumber": 1,
      "slotIndex": 1,
      "withdrawalIndex": 1,
      "validatorIndex": 1,
      "withdrawalAddress": "<string>",
      "amountInGwei": 1
    }
  ]
}

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>
default:mainnet
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<date> | null

End date

Example:

"2023-12-31"

fromDate
string<date> | null

Start date

Example:

"2023-01-01"

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

Successful Response

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