> ## 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_getTransactionByHash | Base

> Base API method eth_getTransactionByHash retrieves information about a transaction given its hash. Available on Base via Chainstack.

Base API method `eth_getTransactionByHash` retrieves information about a transaction given its hash. This method is crucial for tracking transaction details and status.

<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

* `transactionHash` — the hash of the transaction to retrieve.

## Response

* `result` — an object containing details about the transaction, including the block hash, block number, from address, gas used, gas price, hash, input data, nonce, to address, transaction index, value transferred, and the signature components (v, r, s).

## Use case

The `eth_getTransactionByHash` method is essential for:

* Wallets and exchanges that track transactions to update user balances and display transaction statuses.
* DApps that need to verify transaction execution or retrieve transaction inputs for processing.
* Services that monitor the Base network for specific transaction patterns or activities.


## OpenAPI

````yaml /openapi/base_node_api/eth_getTransactionByHash.json POST /2fc1de7f08c0465f6a28e3c355e0cb14
openapi: 3.0.0
info:
  title: eth_getTransactionByHash example
  version: 1.0.0
  description: >-
    This is an API example for eth_getTransactionByHash, a method to get
    transaction information by its hash.
servers:
  - url: https://base-mainnet.core.chainstack.com
security: []
paths:
  /2fc1de7f08c0465f6a28e3c355e0cb14:
    post:
      tags:
        - Ethereum Operations
      summary: eth_getTransactionByHash
      operationId: getTransactionByHash
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - id
                - params
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_getTransactionByHash
                id:
                  type: integer
                  default: 1
                params:
                  type: array
                  default:
                    - >-
                      0x1759c699e6e2b1f249fa0ed605c0de18998bc66556cd6ea3362f92f511aeb06a
                  items:
                    type: string
      responses:
        '200':
          description: Transaction information for the given hash
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object
                    properties:
                      blockHash:
                        type: string
                      blockNumber:
                        type: string
                      from:
                        type: string
                      gas:
                        type: string
                      gasPrice:
                        type: string
                      hash:
                        type: string
                      input:
                        type: string
                      nonce:
                        type: string
                      to:
                        type: string
                      transactionIndex:
                        type: string
                      value:
                        type: string
                      v:
                        type: string
                      r:
                        type: string
                      s:
                        type: string

````