Cronos RPC Endpoint

Free Cronos mainnet RPC endpoint. No API key required for public access. Low-latency JSON-RPC with automatic failover — Chain ID 25.

Connect to Cronos mainnet over HTTPS. Cronos is Crypto.com's EVM chain with sub-second blocks and instant CometBFT finality.

Endpoint URL

https://rpc.nodeflare.app/cronos/v1/{YOUR_KEY}

Public endpoint (no API key)

https://rpc.nodeflare.app/cronos/public

No API key required. Rate-limited to 2 req/s per IP. Heavy methods (eth_getLogs, trace_*, debug_*) are restricted — sign up for a free key to unlock them.

Quick Test

Terminal
curl https://rpc.nodeflare.app/cronos/v1/YOUR_KEY \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'

Supported Methods

CategoryMethods
Chaineth_chainId25, net_version, web3_clientVersion
Blockseth_blockNumber, eth_getBlockByHash, eth_getBlockByNumber
Transactionseth_sendRawTransaction, eth_getTransactionByHash, eth_getTransactionReceipt, eth_getTransactionCount
Stateeth_getBalance, eth_getCode, eth_getStorageAt, eth_call
Gaseth_gasPrice, eth_estimateGas, eth_maxPriorityFeePerGas, eth_feeHistory
Logseth_getLogs, eth_newFilter, eth_getFilterLogs
Tracingdebug_traceTransaction, debug_traceBlockByNumber, trace_transaction

WebSocket for Cronos is not wired through the gateway yet — HTTP polling covers most workloads at ~0.5 s blocks. See the per-method reference for parameters, compute-unit costs, and copy-paste examples.

Chain Info

PropertyValue
Chain ID25
Native tokenCRO
Block time~0.5 s
Method reference/chains/cronos

Rate Limits

Free keys include 2,000,000 CU/month at 10 req/s. eth_getLogs costs 75 CU; trace_*/debug_* cost 100 CU. See rate limits for the full table.