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_transaction

    KEY REQUIRED

    Parity trace transaction

    Returns Parity/OpenEthereum-style traces for a transaction. 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
    txHashrequired
    hash32-byte transaction hash.
    e.g. 0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b

    Request body

    {
      "jsonrpc": "2.0",
      "id": 1,
      "method": "trace_transaction",
      "params": [
        "0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b"
      ]
    }

    Response

    200 OK

    Array of trace objects for the transaction.

    {
      "jsonrpc": "2.0",
      "id": 1,
      "result": [
        {
          "action": {
            "callType": "call",
            "from": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
            "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
            "value": "0x0"
          },
          "result": {
            "gasUsed": "0x5208",
            "output": "0x"
          },
          "type": "call",
          "traceAddress": []
        }
      ]
    }