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_getBlockByNumber

    KEY REQUIRED

    Get block by number

    Returns a block matching the given number or tag.

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

    Supported networks (30)

    ArbitrumArbitrumArbitrum OneArbitrum OneAvalancheAvalancheAvalancheAvalancheBaseBaseBaseBaseBlastBlastBNBBNBBNBBNBCeloCeloCeloCeloEthereumEthereum+18 more

    Required parameters

    NameTypeDescription
    blockrequired
    block
    Block number (hex) or tag.
    e.g. latest
    fullTransactionsrequired
    boolean
    If true, returns full transaction objects; if false, returns hashes only.
    e.g. false

    Request body

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

    Response

    200 OK

    Block object or null.

    {
      "jsonrpc": "2.0",
      "id": 1,
      "result": {
        "number": "0x14a2bff",
        "hash": "0x9b8f4e3a...",
        "parentHash": "0x7a3c1...",
        "timestamp": "0x6537a8b0",
        "miner": "0x4838b106fce9647bdf1e7877bf73ce8b0bad5f97",
        "gasLimit": "0x1c9c380",
        "gasUsed": "0x12a05f2",
        "baseFeePerGas": "0x3a3529440",
        "transactions": [
          "0xabc123...",
          "0xdef456..."
        ]
      }
    }