> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# eth_getUncleByBlockHashAndIndex | Base

> Base API method that returns information about an uncle block by block hash and uncle index position. Use it on Base via Chainstack.

Base API method that returns information about an uncle block by block hash and uncle index position. Note that uncles are a concept specific to proof-of-work chains and don't exist in proof-of-stake chains like Base.

<Check>
  **Get your own node endpoint today**

  [Start for free](https://console.chainstack.com/) and get your app to production levels immediately. No credit card required.

  You can sign up with your GitHub, X, Google, or Microsoft account.
</Check>

## Parameters

* `BLOCK HASH` - 32-byte hash of the block containing the uncle
* `UNCLE INDEX POSITION` - the uncle's index position. It's a hexadecimal value representing the uncle's position in the block's uncle list.

## Response

* `result` — A block object with uncle information, or null when no uncle exists at the given index. The block object includes:
  * `number`: The block number
  * `hash`: Hash of the uncle block
  * `parentHash`: Hash of the parent block
  * `nonce`: Hash of the generated proof-of-work
  * `sha3Uncles`: SHA3 of the uncles data in the block
  * `logsBloom`: The bloom filter for the logs of the block
  * `transactionsRoot`: The root of the transaction trie of the block
  * `stateRoot`: The root of the final state trie of the block
  * `receiptsRoot`: The root of the receipts trie of the block
  * `miner`: The address of the beneficiary to whom the mining rewards were given
  * `difficulty`: Integer of the difficulty for this block
  * `totalDifficulty`: Integer of the total difficulty of the chain until this block
  * `extraData`: The "extra data" field of this block
  * `size`: Integer the size of this block in bytes
  * `gasLimit`: The maximum gas allowed in this block
  * `gasUsed`: The total used gas by all transactions in this block
  * `timestamp`: The unix timestamp for when the block was collated

## Use case

The `eth_getUncleByBlockHashAndIndex` method is primarily used in proof-of-work networks for:

* Analyzing blockchain history and network behavior
* Calculating mining rewards (as uncle blocks receive partial rewards)
* Studying network propagation and consensus
* Research and analysis of fork events

Note: In Base, which is a proof-of-stake chain, this method will typically return null as there are no uncle blocks in PoS networks.


## OpenAPI

````yaml /openapi/base_node_api/eth_getUncleByBlockHashAndIndex.json POST /2fc1de7f08c0465f6a28e3c355e0cb14
openapi: 3.0.0
info:
  title: eth_getUncleByBlockHashAndIndex example
  version: 1.0.0
  description: >-
    This is an API example for eth_getUncleByBlockHashAndIndex, a method to
    retrieve information about an uncle block by block hash and uncle index
    position.
servers:
  - url: https://base-mainnet.core.chainstack.com
security: []
paths:
  /2fc1de7f08c0465f6a28e3c355e0cb14:
    post:
      tags:
        - Ethereum Operations
      summary: eth_getUncleByBlockHashAndIndex
      operationId: getUncleByBlockHashAndIndex
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_getUncleByBlockHashAndIndex
                id:
                  type: integer
                  default: 1
                params:
                  type: array
                  items:
                    type: string
                  minItems: 2
                  maxItems: 2
                  default:
                    - >-
                      0xb3e8c898cfbf4072eaad440e8606e578a33ca4fafc27d7936d83d7392ba3e939
                    - '0x0'
      responses:
        '200':
          description: Information about the uncle block
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object
                    description: Uncle block object, or null when no uncle exists

````