curl --request GET \
--url 'https://beaconcha.in/api/v1/slot/{slot}/deposits?apikey='{
"status": "OK",
"data": [
{
"amount": 32000000000,
"block_index": 1,
"block_root": "0x538d7fba9f4ed29d396d18c225e91e35a5c5bd0aa9a51bd53f18df8fffaf0e4c",
"block_slot": 11648084,
"proof": null,
"publickey": "0x88527b5e326c4837d765e522995e2937aaa945e79a1183a53fc369db70097484c656efa1cf216c57d88b9d2551c97ce9",
"signature": "0xa8c663fa0386ba988a5916a76b10bc5922ce4e2d03b1baf852e138316c0b296df1ef46aba5063b8fdc2ab7c7163fdd5d05733f7ec334009fddec1f02d78f5f7324f4d696577ef453d29937b2fd1b5b2d610edaa253a8423dd1f17e621f3493cf",
"withdrawalcredentials": "0x01000000000000000000000096fb413349cb4ec17410df929898ae9c0e56ae40"
}
]
}Retrieve all validator deposit operations included in the beacon block for a specific slot. Deposits include the validator public key, withdrawal credentials, amount (gwei), and signature. Use pagination parameters to page through results when many deposits are present.
curl --request GET \
--url 'https://beaconcha.in/api/v1/slot/{slot}/deposits?apikey='{
"status": "OK",
"data": [
{
"amount": 32000000000,
"block_index": 1,
"block_root": "0x538d7fba9f4ed29d396d18c225e91e35a5c5bd0aa9a51bd53f18df8fffaf0e4c",
"block_slot": 11648084,
"proof": null,
"publickey": "0x88527b5e326c4837d765e522995e2937aaa945e79a1183a53fc369db70097484c656efa1cf216c57d88b9d2551c97ce9",
"signature": "0xa8c663fa0386ba988a5916a76b10bc5922ce4e2d03b1baf852e138316c0b296df1ef46aba5063b8fdc2ab7c7163fdd5d05733f7ec334009fddec1f02d78f5f7324f4d696577ef453d29937b2fd1b5b2d610edaa253a8423dd1f17e621f3493cf",
"withdrawalcredentials": "0x01000000000000000000000096fb413349cb4ec17410df929898ae9c0e56ae40"
}
]
}The slot to fetch. Provide an integer slot number (>= 0) or the special tag latest for the most recently processed slot.
Slot number (>= 0)
x >= 012751688
Number of items to skip from the start of the result set. Use 0 for the first page.
x >= 00
Upper bound for the range of items to return. The effective page size is computed as min(100, limit - offset). Must be greater than offset. To request N items, set limit = offset + N. When omitted or out of range, the service uses offset + 100.
x >= 140
The slot was found and its deposits are returned in the data array. If the slot has no deposits, the array is empty.
Was this page helpful?