Chain RPC

Ethereum Node RPC

Use the Ethereum RPC API to power interactions with the ETH blockchain. Easily send transactions, query balances, explore block details, and develop scalable Web3 applications.

Mainnet Endpoint Link

JSON-RPC
https://api.chain-rpc.online/ethereum
Example
curl https://api.chain-rpc.online/ethereum \
  -X POST -H "Content-Type: application/json" \
  -H "X-API-Key: test" \
  -d '{ "jsonrpc": "2.0", "id": 1,
    "method": "eth_getBalance",
    "params": [
      "0xde0B295669a9FD93d5F28D9Ec85E40f4cb697BAe",
      "finalized"
    ]
}'

References
Detailed Ethereum JSON-RPC Documentation


This page groups methods by their function to simplify navigation and understanding for developers working with Ethereum.

Block Information

Retrieve data about specific blocks in the Ethereum blockchain. Block data is foundational for accessing transactions, timestamps, miner information, and more. Use these methods to obtain in-depth details about a block by its hash, number, or transaction count.


Transaction Queries

Retrieve detailed transaction data for specific addresses, whether they’re user accounts or smart contracts. These methods provide transaction insights that are critical for analyzing transaction history and validating data.


Writing Transactions & Executing EVM Code

Enables developers to send ETH, write on-chain data, and interact with Ethereum smart contracts. These are essential for deploying contracts, managing assets, and performing EVM (Ethereum Virtual Machine) executions.


Account Information

Retrieve information related to Ethereum accounts, including balance, stored code, and data. Useful for checking account status, balance, and on-chain data storage.


Event Logs

Event logs are records of specific actions within smart contracts, such as transfers or ownership changes. These methods allow you to monitor and retrieve log entries related to particular events.


Chain Information

Retrieve details about the Ethereum network, including chain ID, protocol version, and network status. This information is essential for ensuring compatibility with different network configurations.


Uncle Blocks

Uncle blocks are blocks that were initially valid but ultimately replaced by another block. These methods allow you to gather information about uncle blocks, which can offer insight into block validation and network reorganization.


Gas Estimation

Gas estimation methods provide information on gas prices and fees, which are crucial for developers to estimate transaction costs and ensure transactions are processed promptly.


© 2025 ChainRPC - All rights reserved