eth_getBlockReceipts

Counts as 3 requests. See Request Counting.

eth_getBlockReceipts returns receipts for every transaction in a block when the chain supports the method. It is a heavy history method and may be chain-specific.

Parameters

  1. QUANTITY|TAG|DATA - Block number, block tag, or block hash, depending on chain support.

Request

curl -X POST https://robinhood-mainnet-rpc.blockreq.com/v1/rpc/public \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"eth_getBlockReceipts","params":["latest"],"id":1}'

Notes

  • Use this method for block-level receipt ingestion when available.
  • Availability and accepted parameter form can vary by chain and provider.
  • Large blocks can return large payloads.

Code Examples

curl -X POST https://robinhood-mainnet-rpc.blockreq.com/v1/rpc/public \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"eth_getBlockReceipts","params":["latest"],"id":1}'

Try It