Quickstart
Pinax RPC endpoints are standard JSON-RPC 2.0 over HTTPS. Pick a network, embed your API key in the URL path, and POST a JSON-RPC body. Browse the full method catalog below or hit Try it on any method to send a live request.
No API key on this team yet — sample shows YOUR_API_KEY placeholder.
cURL
1curl 'https://arbsepolia.rpc.service.pinax.network/v1/YOUR_API_KEY/' \2 -H 'Content-Type: application/json' \3 -d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}'
node
net_version
KEY REQUIREDNetwork version
Returns the network ID as a decimal string (e.g. `1` for mainnet).
POST
https://arbsepolia.rpc.service.pinax.network/v1/<API_KEY>/
Supported networks (30)
Request body
{
"jsonrpc": "2.0",
"id": 1,
"method": "net_version"
}Response
200 OKDecimal network ID string.
{ "jsonrpc": "2.0", "id": 1, "result": "1" }