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

    eth_getBlockByHash

    KEY REQUIRED

    Get block by hash

    Returns a block matching the given block hash.

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

    Supported networks (30)

    ArbitrumArbitrumArbitrum OneArbitrum OneAvalancheAvalancheAvalancheAvalancheBaseBaseBaseBaseBlastBlastBNBBNBBNBBNBCeloCeloCeloCeloEthereumEthereum+18 more

    Required parameters

    NameTypeDescription
    blockHashrequired
    hash
    32-byte block hash.
    e.g. 0x9b8f4e3a3f2c1d8e7a6b5c4d3e2f1a0b9c8d7e6f5a4b3c2d1e0f9a8b7c6d5e4f
    fullTransactionsrequired
    boolean
    If true, returns full transactions; if false, hashes.
    e.g. false

    Request body

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

    Response

    200 OK

    Block object or null.

    {
      "jsonrpc": "2.0",
      "id": 1,
      "result": {
        "number": "0x14a2bff",
        "hash": "0x9b8f4e3a...",
        "transactions": []
      }
    }