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://eth.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":[]}'
    Supported networks (32)
    EthereumEthereumBNBBNBBaseBasePolygonPolygonOptimismOptimismArbitrum OneArbitrum One
    debug

    trace_block

    KEY REQUIRED

    Parity trace block

    Returns Parity/OpenEthereum-style traces for every transaction in a block. Available only on RPC endpoints with Reth archive node support.
    POST
    https://eth.rpc.service.pinax.network/v1/<API_KEY>/
    Available only on RPC endpoints with Reth archive node support.

    Required parameters

    NameTypeDescription
    blockrequired
    blockBlock number (hex) or tag.
    e.g. latest

    Request body

    {
      "jsonrpc": "2.0",
      "id": 1,
      "method": "trace_block",
      "params": [
        "latest"
      ]
    }

    Response

    200 OK

    Array of trace objects for the block.

    {
      "jsonrpc": "2.0",
      "id": 1,
      "result": [
        {
          "blockNumber": 21638399,
          "transactionHash": "0x88df01...",
          "type": "call",
          "traceAddress": []
        }
      ]
    }