Ethereum Data API
Last updated
Was this helpful?
Last updated
Was this helpful?
Ethereum Data API is a collection of APIs that expose read data from the Ethereum network.
Get global information about protocol token supplies at a given block number
/eth/v0/status/{block_number}
Block height to query
List LsETH balance of several addresses It is possible to specify for which block and which addresses to get the balances.
/eth/v0/balances
Comma separated list of addresses (if empty returns all addresses)
Block number at which to get balance for (latest by default)
Limit of elements to return (100 by default)
Get LsETH balance of a given address It is possible to specify for which block to get the balance at.
/eth/v0/balances/{address}
Account address to query the balance for
Block number at which to get balance for (latest by default)
Get the LsETH balance history for a given address It returns a balance object for every block a balance change occurred It is possible to filter the history for a range only blocks
/eth/v0/balances/{address}/history
Address of the balance to query balance for
Starting block height to query (0 by default)
Ending block height to query (latest by default)
Limit of elements to return (100 by default)