List beacon deposits in a specific block
curl --request GET \
--url https://api.blockscout.com/{chain_id}/api/v2/blocks/{block_hash_or_number_param}/beacon/deposits \
--header 'Authorization: Bearer <token>'{
"items": [
{
"amount": "<string>",
"block_hash": "<string>",
"block_number": 123,
"block_timestamp": "2023-11-07T05:31:56Z",
"from_address": {
"ens_domain_name": "<string>",
"hash": "<string>",
"implementations": [
{
"address_hash": "<string>",
"name": "<string>"
}
],
"is_contract": true,
"is_scam": true,
"is_verified": true,
"metadata": {
"tags": [
{
"meta": {},
"name": "<string>",
"ordinal": 123,
"slug": "<string>",
"tagType": "<string>"
}
]
},
"name": "<string>",
"private_tags": [
{
"address_hash": "<string>",
"display_name": "<string>",
"label": "<string>"
}
],
"public_tags": [
{
"address_hash": "<string>",
"display_name": "<string>",
"label": "<string>"
}
],
"watchlist_names": [
{
"display_name": "<string>",
"label": "<string>"
}
]
},
"index": 123,
"pubkey": "<string>",
"signature": "<string>",
"status": {
"finished_past_indexing": true
},
"transaction_hash": "<string>",
"withdrawal_credentials": "<string>",
"withdrawal_address": {
"ens_domain_name": "<string>",
"hash": "<string>",
"implementations": [
{
"address_hash": "<string>",
"name": "<string>"
}
],
"is_contract": true,
"is_scam": true,
"is_verified": true,
"metadata": {
"tags": [
{
"meta": {},
"name": "<string>",
"ordinal": 123,
"slug": "<string>",
"tagType": "<string>"
}
]
},
"name": "<string>",
"private_tags": [
{
"address_hash": "<string>",
"display_name": "<string>",
"label": "<string>"
}
],
"public_tags": [
{
"address_hash": "<string>",
"display_name": "<string>",
"label": "<string>"
}
],
"watchlist_names": [
{
"display_name": "<string>",
"label": "<string>"
}
]
}
}
],
"next_page_params": {
"index": 123
}
}blocks
List beacon deposits in a specific block
Retrieves beacon deposits included in a specific block with pagination support.
GET
/
{chain_id}
/
api
/
v2
/
blocks
/
{block_hash_or_number_param}
/
beacon
/
deposits
List beacon deposits in a specific block
curl --request GET \
--url https://api.blockscout.com/{chain_id}/api/v2/blocks/{block_hash_or_number_param}/beacon/deposits \
--header 'Authorization: Bearer <token>'{
"items": [
{
"amount": "<string>",
"block_hash": "<string>",
"block_number": 123,
"block_timestamp": "2023-11-07T05:31:56Z",
"from_address": {
"ens_domain_name": "<string>",
"hash": "<string>",
"implementations": [
{
"address_hash": "<string>",
"name": "<string>"
}
],
"is_contract": true,
"is_scam": true,
"is_verified": true,
"metadata": {
"tags": [
{
"meta": {},
"name": "<string>",
"ordinal": 123,
"slug": "<string>",
"tagType": "<string>"
}
]
},
"name": "<string>",
"private_tags": [
{
"address_hash": "<string>",
"display_name": "<string>",
"label": "<string>"
}
],
"public_tags": [
{
"address_hash": "<string>",
"display_name": "<string>",
"label": "<string>"
}
],
"watchlist_names": [
{
"display_name": "<string>",
"label": "<string>"
}
]
},
"index": 123,
"pubkey": "<string>",
"signature": "<string>",
"status": {
"finished_past_indexing": true
},
"transaction_hash": "<string>",
"withdrawal_credentials": "<string>",
"withdrawal_address": {
"ens_domain_name": "<string>",
"hash": "<string>",
"implementations": [
{
"address_hash": "<string>",
"name": "<string>"
}
],
"is_contract": true,
"is_scam": true,
"is_verified": true,
"metadata": {
"tags": [
{
"meta": {},
"name": "<string>",
"ordinal": 123,
"slug": "<string>",
"tagType": "<string>"
}
]
},
"name": "<string>",
"private_tags": [
{
"address_hash": "<string>",
"display_name": "<string>",
"label": "<string>"
}
],
"public_tags": [
{
"address_hash": "<string>",
"display_name": "<string>",
"label": "<string>"
}
],
"watchlist_names": [
{
"display_name": "<string>",
"label": "<string>"
}
]
}
}
],
"next_page_params": {
"index": 123
}
}Authorizations
bearerAuthapiKeyAuth
API key passed as a Bearer token in the Authorization header.
Path Parameters
Block hash or number in the path
Required range:
x >= 0The ID of the blockchain
Query Parameters
Number of items per page
Required range:
x >= 1Item index for paging
Was this page helpful?
Retrieves detailed information for a specific block identified by its number or hash.
Previous
List internal transactions in a specific block
Next
⌘I