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

# Get transaction by hash

> Transaction with its receipt fields, event logs, decoded token transfers and HyperEVM batch.



## OpenAPI

````yaml /elysium/openapi-rest.json get /elysium/testnet/transactions/{tx_hash}
openapi: 3.0.3
info:
  title: HL Indexer API — Elysium Testnet
  version: 1.0.0
  description: >-
    Elysium testnet (Kinetiq L2 on HyperEVM testnet, chain 99801): blocks,
    transactions, logs, batches, bridge HyperEVM ↔ Elysium, tokens and accounts.
servers:
  - url: https://api.hypedexer.com
    description: EU production
security: []
tags:
  - name: Elysium Testnet
    description: Elysium testnet chain, settlement batches, bridge, tokens and accounts.
paths:
  /elysium/testnet/transactions/{tx_hash}:
    get:
      tags:
        - Elysium Testnet
      summary: Get transaction by hash
      description: >-
        Transaction with its receipt fields, event logs, decoded token transfers
        and HyperEVM batch.
      parameters:
        - name: tx_hash
          in: path
          schema:
            type: string
            pattern: ^0x[0-9a-fA-F]{64}$
            description: Transaction hash
          required: true
          description: Transaction hash
        - name: X-API-Key
          in: header
          schema:
            type: string
            nullable: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    default: true
                  message:
                    type: string
                  data:
                    $ref: '#/components/schemas/ElysiumTransactionDetail'
                  execution_time_ms:
                    type: number
                  has_more:
                    type: boolean
        '404':
          description: Not found
        '422':
          description: Invalid parameter
components:
  schemas:
    ElysiumTransactionDetail:
      properties:
        block_time:
          format: date-time
          title: Block Time
          type: string
        block_number:
          title: Block Number
          type: integer
        tx_index:
          title: Tx Index
          type: integer
        tx_hash:
          title: Tx Hash
          type: string
        tx_type:
          title: Tx Type
          type: string
        from_addr:
          title: From Addr
          type: string
        to_addr:
          title: To Addr
          type: string
        contract_address:
          title: Contract Address
          type: string
        value_wei:
          title: Value Wei
          type: string
        nonce:
          title: Nonce
          type: integer
        gas_limit:
          title: Gas Limit
          type: integer
        gas_used:
          title: Gas Used
          type: integer
        gas_used_for_l1:
          title: Gas Used For L1
          type: integer
        effective_gas_price:
          title: Effective Gas Price
          type: integer
        success:
          title: Success
          type: integer
        input_len:
          title: Input Len
          type: integer
        method_id:
          title: Method Id
          type: string
        is_system:
          title: Is System
          type: integer
        is_spam:
          title: Is Spam
          type: integer
        batch_number:
          default: null
          title: Batch Number
          type: integer
          nullable: true
        logs:
          default: []
          items:
            $ref: '#/components/schemas/ElysiumLog'
          title: Logs
          type: array
        token_transfers:
          default: []
          items:
            $ref: '#/components/schemas/ElysiumTokenTransfer'
          title: Token Transfers
          type: array
      required:
        - block_time
        - block_number
        - tx_index
        - tx_hash
        - tx_type
        - from_addr
        - to_addr
        - contract_address
        - value_wei
        - nonce
        - gas_limit
        - gas_used
        - gas_used_for_l1
        - effective_gas_price
        - success
        - input_len
        - method_id
        - is_system
        - is_spam
      title: ElysiumTransactionDetail
      type: object
    ElysiumLog:
      properties:
        block_time:
          format: date-time
          title: Block Time
          type: string
        block_number:
          title: Block Number
          type: integer
        tx_index:
          title: Tx Index
          type: integer
        log_index:
          title: Log Index
          type: integer
        tx_hash:
          title: Tx Hash
          type: string
        address:
          title: Address
          type: string
        topic0:
          title: Topic0
          type: string
        topic1:
          default: ''
          title: Topic1
          type: string
        topic2:
          default: ''
          title: Topic2
          type: string
        topic3:
          default: ''
          title: Topic3
          type: string
        data:
          title: Data
          type: string
      required:
        - block_time
        - block_number
        - tx_index
        - log_index
        - tx_hash
        - address
        - topic0
        - data
      title: ElysiumLog
      type: object
    ElysiumTokenTransfer:
      properties:
        block_time:
          format: date-time
          title: Block Time
          type: string
        block_number:
          title: Block Number
          type: integer
        log_index:
          title: Log Index
          type: integer
        batch_index:
          title: Batch Index
          type: integer
        tx_hash:
          title: Tx Hash
          type: string
        token:
          title: Token
          type: string
        standard:
          title: Standard
          type: string
        symbol:
          default: ''
          title: Symbol
          type: string
        decimals:
          default: 0
          title: Decimals
          type: integer
        from_addr:
          title: From Addr
          type: string
        to_addr:
          title: To Addr
          type: string
        token_id:
          title: Token Id
          type: string
        amount_raw:
          title: Amount Raw
          type: string
        amount:
          title: Amount
          type: number
      required:
        - block_time
        - block_number
        - log_index
        - batch_index
        - tx_hash
        - token
        - standard
        - from_addr
        - to_addr
        - token_id
        - amount_raw
        - amount
      title: ElysiumTokenTransfer
      type: object

````