/eth/v1/beacon/pool/attestations

Get Attestations from operations pool.

Retrieves attestations known by the node but not necessarily incorporated into any block

Example Request and Result for /v1/beacon/pool/attestations

In this section, we provide an illustrative example of a request made to retrieve details contents using the /v1/beacon/pool/attestations endpoint. Additionally, we present the resulting response containing information about the attestations from operations pool.

Parameters

The example in this section uses a non-existing project id.

Make sure you replace it with your Ethereum Holesky Beacon endpoint when issuing the API calls.

Don't have a project id? Here's a straightforward guide on how to obtain one!

Get Attestations from operations pool.

GET https://eth-holesky-beacon.blastapi.io/<project-id>/eth/v1/beacon/pool/attestations

Query Parameters

{
  "data": [
    {
      "aggregation_bits": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040",
      "data": {
        "slot": "936678",
        "index": "47",
        "beacon_block_root": "0x9ae734e3eee2adc116875597f4c6dfb51c0a7320f3740626de334f45b0f013b1",
        "source": {
          "epoch": "29270",
          "root": "0xc06153e74ad184230ec4467612834d18aa3193b4178ad3637f2606e612e98f9e"
        },
        "target": {
          "epoch": "29271",
          "root": "0xbb6c8d89853b9981ebf8bd5885119540fd32e6d87407d22026f79599414757e0"
        }
      },
      "signature": "0x8baa8d799a8578725ac4e459924f5ef02be5bc2f5a751b5c06e8046c8b7b2c49c3a41beaff150d17279bbbe23530ad3e1714fa2582dc0581a1c29c1fd328f0ba62ee9f5da7b927b4e9a46c060c77cef158eae98a446af1dfc3786444da102c64"
    }
  ]
}

Curl Request example

curl -X 'GET' \
  'https://eth-holesky-beacon.blastapi.io/<project_id>/eth/v1/beacon/pool/attestations?slot=936678&committee_index=47' \
  -H 'accept: application/json'

Last updated