Monad Testnet RPC endpoint
Monad Testnet (chain ID 10143) is served over HTTPS POST JSON-RPC 2.0. Full nodes back the endpoint, supporting standard EVM methods. Every plan includes Monad Testnet, including Free.
Network information
| Network | Monad Testnet |
| Chain ID | 10143 |
| Endpoint | https://rpc.solidrpc.io/YOUR_API_KEY/evm/10143 |
| Type | Testnet · L1 |
| Native currency | MON |
| Node types | Full |
| Methods | standard |
| Protocol | HTTPS JSON-RPC 2.0 (no WebSocket) |
Quickstart
Fetch the latest Monad Testnet 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/10143 \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'Standard methods only
Monad Testnet 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 Monad Testnet draw from the same response-unit quota and rate limit as every other network. Error bodies are identical everywhere; see the error reference.