Skip to main content
GET
/
blocks
/
{block_number_or_hash}
/
withdrawals
get block withdrawals
curl --request GET \
  --url https://eth.blockscout.com/api/v2/blocks/{block_number_or_hash}/withdrawals
{
  "items": [
    {
      "index": 1,
      "amount": "1000000000000000000",
      "validator_index": 1,
      "block_number": 1,
      "timestamp": "2023-06-20T07:55:00.000000Z"
    }
  ],
  "next_page_params": {
    "index": 1,
    "items_count": 50
  }
}

Path Parameters

block_number_or_hash
string
required

Block number or hash

Response

block's withdrawals (pay attention that block_number together with timestamp fields is not included to response in this endpoint)

items
object[]
required
next_page_params
object
required
Example:
{ "index": 1, "items_count": 50 }