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

    debug_traceCall

    KEY REQUIRED

    Trace simulated call

    Executes a call against historical or latest state and returns tracer output without broadcasting 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
    transactionrequired
    jsonCall object with fields such as <code>from</code>, <code>to</code>, <code>gas</code>, <code>value</code>, and <code>data</code>.
    e.g. {"to":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","data":"0x18160ddd"}
    blockrequired
    blockBlock number (hex) or tag.
    e.g. latest

    Optional parameters

    NameTypeDescription
    tracerConfig
    jsonOptional tracer configuration.
    e.g. {"tracer":"callTracer","timeout":"30s"}

    Request body

    {
      "jsonrpc": "2.0",
      "id": 1,
      "method": "debug_traceCall",
      "params": [
        "{\"to\":\"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\"data\":\"0x18160ddd\"}",
        "latest",
        "{\"tracer\":\"callTracer\",\"timeout\":\"30s\"}"
      ]
    }

    Response

    200 OK

    Trace result object. Shape depends on the selected tracer.

    {
      "jsonrpc": "2.0",
      "id": 1,
      "result": {
        "type": "CALL",
        "from": "0x0000000000000000000000000000000000000000",
        "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
        "input": "0x18160ddd",
        "output": "0x000000000000000000000000000000000000000000000000000000174876e800"
      }
    }