eth_getBlockReceipts
Robinhood Chain / https://triport.io/rpc/robinhood
Minimum tier: Pro
Last updated:
Measured OK on 7 host(s) in robinhood-2026-09-07-perhost.json.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| block | BlockTag | Yes |
Returns
| Field | Type |
|---|---|
| result | array |
Examples
curl https://triport.io/rpc/robinhood \
-X POST -H 'Content-Type: application/json' \
-H 'Authorization: Bearer <api-key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"eth_getBlockReceipts","params":["<block>"]}'const res = await fetch("https://triport.io/rpc/robinhood", {
method: "POST",
headers: { "Content-Type": "application/json", Authorization: "Bearer <api-key>" },
body: JSON.stringify({
"jsonrpc": "2.0",
"id": 1,
"method": "eth_getBlockReceipts",
"params": [
"<block>"
]
}),
});
const data = await res.json();import requests
resp = requests.post(
"https://triport.io/rpc/robinhood",
headers={"Authorization": "Bearer <api-key>"},
json={"jsonrpc":"2.0","id":1,"method":"eth_getBlockReceipts","params":["<block>"]},
)
print(resp.json())Usage
- Transport: HTTP (JSON-RPC).
- Chain: Robinhood Chain.
- Clusters: mainnet.
- Credit cost: 5 per call.
FAQ
- What does eth_getBlockReceipts do?
- Return all transaction receipts in a block.
- How many credits does eth_getBlockReceipts cost?
- eth_getBlockReceipts costs 5 credit(s) per call on Triport by default.
- Is eth_getBlockReceipts available over WebSocket?
- eth_getBlockReceipts is an HTTP JSON-RPC method.