Skip to main content

RPC endpoints

What is a RPC Node?

  • RPC nodes can be queried for information and used to initiate transactions.
  • The purpose of RPC nodes is to allow decentralized applications and clients to communicate with a blockchain network.
  • RPC nodes listen for requests, respond with the necessary data, or execute the requested transaction.
  • Common usage of RPC nodes includes querying the blockchain for information, sending transactions, and executing smart contract functions.
  • RPC nodes are important for decentralized applications to function and interact with a blockchain network, allowing for decentralized exchange and other use cases.

Public Endpoints

info

The free endpoints below are dedicated to end users, they can be used to interact with dApps or deploy/call smart contracts. They limit the rate of API calls, so they are not suitable for high demand, such as a dApp UI constantly scraping blockchain data or an indexer.

tip

To meet the demands of a production dApp you can run your own RPC node or get your own API key from one of our infrastructure partners.

Public endpoint Minato
NetworkMinato
Parent chainSepolia
HTTPShttps://rpc.minato.soneium.org/
WebsocketNot yet available
chainID1946
SymbolETH

Test command

curl -i -X POST \
--data '{"id": 1, "jsonrpc": "2.0", "method": "eth_blockNumber"}' \
-H "Content-Type: application/json" \
"https://rpc.minato.soneium.org/"