Skip to main content
GET
/
api
/
v1
/
slot
/
{slot}
/
withdrawals
Withdrawals for a slot
curl --request GET \
  --url 'https://beaconcha.in/api/v1/slot/{slot}/withdrawals?apikey='
{
  "status": "OK",
  "data": [
    {
      "address": "0xb10edd6fa6067dba8d4326f1c8f0d1c791594f13",
      "amount": 18429837,
      "block_slot": 12771160,
      "validatorindex": 1120967,
      "withdrawalindex": 104169659
    }
  ]
}

Authorizations

apikey
string
query
required

Path Parameters

slot
required

The slot to fetch. Provide an integer slot number (>= 0) or the special tag latest for the most recently processed slot. Slot number (>= 0)

Required range: x >= 0
Example:

12751688

Response

The slot was found and its withdrawals are returned in the data array. If the slot has no withdrawals, the array is empty.

Standard success envelope used by all API endpoints.

status
enum<string>

HTTP-independent status of the API operation. For successful responses this is always "OK".

Available options:
OK
data
object[]

Response payload specific to the endpoint.