List of all BNB Smart Chain API Endpoints
API Endpoints by use case
- Getting Blocks
- Reading Transactions
- Writing Transactions & EVM Execution
- Account Information
- Event Logs
- Chain Information
- Getting Uncles
- Gas Estimation
- Web3
- Trace API
Getting Blocks
Retrieves information from a particular block in the blockchain.
- eth_getBlockByHash
- eth_blocknumber
- eth_getBlockByNumber
- eth_getBlockTransactionCountByHash
- eth_getBlockTransactionCountByNumber
Reading Transactions
Retrieves information on the state data for addresses regardless of whether it is a user or a smart contract.
- eth_getTransactionByHash
- eth_getTransactionByBlockHashAndIndex
- eth_getTransactionByBlockNumberAndIndex
- eth_getTransactionReceipt
- eth_getTransactionCount
Writing Transactions & EVM Execution
Allows developers to send ETH from one address to another, write data on-chain, and interact with smart contracts.
Account Information
Returns information regarding an address's stored on-chain data.
Event Logs
Returns logs which are records that denote/provide context on specific events within a smart contract, like a token transfer or a change of ownership, for example.
Chain Information
Returns information on the Ethereum network and internal settings.
Getting Uncles
Returns information on uncle blocks which are network rejected blocks and replaced by a canonical block instead.
- eth_getUncleCountByBlockHash
- eth_getUncleByBlockNumberAndIndex
- eth_getUncleByBlockHashAndIndex
- eth_getUncleCountByBlockNumber
Gas Estimation
Returns information on the Ethereum network gas estimates.
Web3
Returns Ethereum network configuration information.