ZetaChain RPC endpoint
ZetaChain (chain ID 7000) is served over HTTPS POST JSON-RPC 2.0. Full nodes back the endpoint, supporting standard EVM methods. Every plan includes ZetaChain, including Free.
Network information
| Network | ZetaChain |
| Chain ID | 7000 |
| Endpoint | https://rpc.solidrpc.io/YOUR_API_KEY/evm/7000 |
| Type | Mainnet · L1 |
| Native currency | ZETA |
| Node types | Full |
| Methods | standard |
| Protocol | HTTPS JSON-RPC 2.0 (no WebSocket) |
Quickstart
Fetch the latest ZetaChain block number. Replace YOUR_API_KEY with a key from the dashboard, new accounts start on the Free plan, no card required (see getting started):
curl https://rpc.solidrpc.io/YOUR_API_KEY/evm/7000 \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'Standard methods only
ZetaChain is served by full nodes only, there is no archive state, and trace_* and debug_* methods are not available on this chain. The standard EVM method set works as usual. See the networks page for per-chain coverage.
Limits and errors
Quotas and rate limits are account-wide, not per-chain. Method calls to ZetaChain draw from the same response-unit quota and rate limit as every other network. Error bodies are identical everywhere; see the error reference.