Standard Ethereum JSON-RPC 2.0

    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":[]}'
    state

    eth_getBalance

    KEY REQUIRED

    Get balance

    Returns the wei balance of an account at a given block.

    POST
    https://arbsepolia.rpc.service.pinax.network/v1/<API_KEY>/

    Supported networks (30)

    ArbitrumArbitrumArbitrum OneArbitrum OneAvalancheAvalancheAvalancheAvalancheBaseBaseBaseBaseBlastBlastBNBBNBBNBBNBCeloCeloCeloCeloEthereumEthereum+18 more

    Required parameters

    NameTypeDescription
    addressrequired
    address
    20-byte account address.
    e.g. 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
    blockrequired
    block
    Block number (hex), tag (latest, earliest, pending, safe, finalized), or block hash.
    e.g. latest

    Request body

    {
      "jsonrpc": "2.0",
      "id": 1,
      "method": "eth_getBalance"
    }

    Response

    200 OK

    Hex-encoded wei balance.

    {
      "jsonrpc": "2.0",
      "id": 1,
      "result": "0x4563918244f40000"
    }