Standard API Overview

Standard API is the main Node API method group for direct blockchain interaction through chain-native interfaces. Use it when your application needs raw blockchain data or standard node operations over HTTPS, including reading blocks, transactions, balances, logs, account data, gas data, cluster data, and submitting signed transactions where the selected chain supports them.


What You Can Build

Standard API supports common chain-native operations used by production applications:

  • Read blockchain data: query blocks, transactions, receipts, logs, account balances, account data, storage, contract code, slots, epochs, and cluster status.
  • Estimate and submit transactions: estimate gas, fetch fee data, and submit signed transactions on chains where those operations are supported.
  • Integrate existing tooling: connect wallets, SDKs, backend clients, and indexing workers that speak chain-native RPC, REST, or gRPC protocols.
  • Monitor application state: read chain state on demand over HTTPS for dashboards, explorers, and automated services.

Request Model

Standard API uses the selected chain’s native request model over a chain-specific Node API endpoint. For Ethereum-compatible chains, requests commonly use JSON-RPC 2.0 over HTTPS:

1{
2 "jsonrpc": "2.0",
3 "method": "eth_blockNumber",
4 "params": [],
5 "id": 1
6}

Responses follow the selected chain’s standard response format. Successful JSON-RPC responses include a result; failed responses include an error object with details from the node or endpoint.

Method names, parameters, and response schemas can differ by chain, so use the API Reference for the target chain before implementing production requests.


Methods

The Standard API references are chain-specific. Select the one you’d like to interact with to view its method details:

Ethereum

View Ethereum API reference.

Solana

View Solana API reference.

BNB Smart Chain
BNB Smart Chain

Coming soon…

Polygon PoS
Polygon PoS

Coming soon…

Base

Coming soon…

Arbitrum

Coming soon…

Bitcoin
Bitcoin

Coming soon…

OP Mainnet
Optimism

Coming soon…

Avalanche
Avalanche

Coming soon…

Tron
TRON

Coming soon…

Monad
Monad

Coming soon…

Sui
Sui

Coming soon…