Skip to main content
GET
/
api
/
v1
/
slot
/
{slot}
/
attesterslashings
Attester slashings for a slot
curl --request GET \
  --url 'https://beaconcha.in/api/v1/slot/{slot}/attesterslashings?apikey='
{
"status": "OK",
"data": [
{
"attestation1_beaconblockroot": "0x4b50f7112f30b4fe9ff61324d9282308b8104874991f796f181cd58511fc67d5",
"attestation1_index": 0,
"attestation1_indices": [
0,
1,
2,
3
],
"attestation1_signature": "0xaa",
"attestation1_slot": 12571716,
"attestation1_source_epoch": 392865,
"attestation1_source_root": "0x1b3891944d7c2fdac53dff9410f18992487e31b1f68d995c1429548effa47268",
"attestation1_target_epoch": 392866,
"attestation1_target_root": "0x1898ff52ee440f1ac1ed328becaaa2672c6c50976203d42f672beb5c495c8116",
"attestation2_beaconblockroot": "0x2c262c5cdbddd4b4a673c3a112b8a0d1ca539c15cac2a95e0094c0d28a008e88",
"attestation2_index": 0,
"attestation2_indices": [
0,
1,
2,
3
],
"attestation2_signature": "0xaa",
"attestation2_slot": 12571716,
"attestation2_source_epoch": 392865,
"attestation2_source_root": "0x1b3891944d7c2fdac53dff9410f18992487e31b1f68d995c1429548effa47268",
"attestation2_target_epoch": 392866,
"attestation2_target_root": "0x1898ff52ee440f1ac1ed328becaaa2672c6c50976203d42f672beb5c495c8116",
"block_index": 0,
"block_root": "0x3381dd071cb6a020144bb980758a3a844129a62d74146b0fcdd82c4125cc8d66",
"block_slot": 12571718
}
]
}

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 attester slashings are returned in the data array. If the slot has no attester slashings, 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.