Skip to main content
NEAR Protocol provides multiple ways to interact with the network — from low-level JSON-RPC calls to visual explorers and wallets.

Tools

NEAR Explorer

Browse transactions, accounts, blocks, and contracts on mainnet and testnet.

NEAR Wallet

Create and manage NEAR accounts, send tokens, and interact with dApps.

RPC API

NEAR exposes a JSON-RPC 2.0 API for programmatic access to the network. All requests are POST to a provider endpoint, with the method name encoded in the URL path.
curl -X POST https://rpc.mainnet.near.org/status \
  -H "Content-Type: application/json" \
  -d '{}'
See RPC Providers for the full list of public endpoints.

Available Methods

CategoryMethods
Transactionssend_tx, tx, broadcast_tx_async, broadcast_tx_commit
Blocks & Chunksblock, chunk, block_effects, changes
Accounts & Keysquery (view account, code, state, access keys, call function)
Networkstatus, health, network_info, validators
Gas & Configgas_price, genesis_config, EXPERIMENTAL_protocol_config
Light Clientlight_client_proof, next_light_client_block
Explore the full interactive reference in the sidebar, or start with RPC Providers to configure your endpoint.