Moonbeam nodes accept HTTP requests using the JSON-RPC 2.0 specification.
Returns most recent block number
curl https://moonbeam-mainnet-rpc.allthatnode.com:9933/'YOUR-API-KEY' \ -X POST \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
URL: https://moonbeam-mainnet-rpc.allthetnode.com:9933/'YOUR-API-KEY' RequestType: POST Body: { "jsonrpc":"2.0", "method":"eth_blockNumber", "params":[], "id":1 }
{ "jsonrpc": "2.0", "result": "0x5b338f4", "id": 1 }
Last updated 2 years ago