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

    eth_getLogs

    KEY REQUIRED

    Get logs

    Returns event logs matching the filter. Use `address`, `topics`, and the block range to narrow results.

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

    Supported networks (30)

    ArbitrumArbitrumArbitrum OneArbitrum OneAvalancheAvalancheAvalancheAvalancheBaseBaseBaseBaseBlastBlastBNBBNBBNBBNBCeloCeloCeloCeloEthereumEthereum+18 more

    Optional parameters

    NameTypeDescription
    fromBlock
    block
    Earliest block (hex) or tag.
    e.g. latest
    toBlock
    block
    Latest block (hex) or tag.
    e.g. latest
    address
    address
    Contract address (or comma-separated list).
    e.g. 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
    topics
    json
    JSON array of topic filters (each entry: hex string, null, or array).
    e.g. ["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"]

    Request body

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

    Response

    200 OK

    Array of log objects.

    {
      "jsonrpc": "2.0",
      "id": 1,
      "result": [
        {
          "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
          "topics": [
            "0xddf252ad...",
            "0x000000...sender",
            "0x000000...recipient"
          ],
          "data": "0x000000000000000000000000000000000000000000000000000000174876e800",
          "blockNumber": "0x14a2bff",
          "transactionHash": "0x88df01...",
          "logIndex": "0x4"
        }
      ]
    }