eth_feeHistory - Tempo

Example code for the eth_feeHistory JSON-RPC method. Complete guide on how to use eth_feeHistory JSON-RPC in GetBlock Web3 documentation.

Returns historical base fees and priority fee percentiles over a window of recent blocks. Useful for building fee oracles, though Tempo's stable-fee design means the data is unusually flat.

Parameters

Parameter
Type
Required
Description

blockCount

string

Yes

Number of blocks in the window (hex, max 1024)

newestBlock

string

Yes

The newest block in the window — hex number or tag

rewardPercentiles

array of number

Yes

Percentiles to compute over priority fees (e.g. [25, 50, 75])

Request Example

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "eth_feeHistory",
    "params": [
        "0x5",
        "latest",
        [
            25,
            50,
            75
        ]
    ],
    "id": "getblock.io"
}'

Response Example

Response Parameters

Field
Type
Description

result.oldestBlock

string

Oldest block in the returned window (hex)

result.baseFeePerGas

array of string

Base fee per gas for each block in the window plus one extra

result.gasUsedRatio

array of number

Ratio of gas used to gas limit for each block

result.reward

array of array of string

Priority fee percentiles for each block

Use Cases

  • Building EIP-1559 fee oracles for compatibility with Ethereum tooling

  • Analytics on Tempo fee stability over time

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Last updated

Was this helpful?