Skip to main content
GET
/
api
/
v1
/
slot
/
{slot}
/
deposits
Deposits for a slot
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"
    }
  ]
}

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

Query Parameters

offset
integer
default:0

Number of items to skip from the start of the result set. Use 0 for the first page.

Required range: x >= 0
Example:

0

limit
integer

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.

Required range: x >= 1
Example:

40

Response

The slot was found and its deposits are returned in the data array. If the slot has no deposits, 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.