> ## 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.

# Track a bridge transfer by tx hash

> Track a bridge transfer by tx hash



## OpenAPI

````yaml /elysium/openapi-rest.json get /elysium/testnet/bridge/transfers/{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/bridge/transfers/{tx_hash}:
    get:
      tags:
        - Elysium Testnet
      summary: Track a bridge transfer by tx hash
      description: Track a bridge transfer by tx hash
      parameters:
        - name: tx_hash
          in: path
          schema:
            type: string
            pattern: ^0x[0-9a-fA-F]{64}$
            description: >-
              HyperEVM or Elysium tx hash (initiation, delivery, redeem) or
              retryable ticket id
          required: true
          description: >-
            HyperEVM or Elysium tx hash (initiation, delivery, redeem) or
            retryable ticket id
        - 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:
                    type: array
                    items:
                      $ref: '#/components/schemas/BridgeTransfer'
                  execution_time_ms:
                    type: number
                  has_more:
                    type: boolean
        '422':
          description: Invalid parameter
components:
  schemas:
    BridgeTransfer:
      properties:
        transfer_id:
          title: Transfer Id
          type: string
        direction:
          title: Direction
          type: string
        asset:
          title: Asset
          type: string
        route:
          title: Route
          type: string
        status:
          title: Status
          type: string
        l1_token:
          title: L1 Token
          type: string
        l2_token:
          title: L2 Token
          type: string
        symbol:
          title: Symbol
          type: string
        decimals:
          title: Decimals
          type: integer
        from_addr:
          title: From Addr
          type: string
        to_addr:
          title: To Addr
          type: string
        amount_raw:
          title: Amount Raw
          type: string
        amount:
          title: Amount
          type: number
        message_index:
          default: null
          title: Message Index
          type: integer
          nullable: true
        position:
          default: null
          title: Position
          type: integer
          nullable: true
        ticket_id:
          title: Ticket Id
          type: string
        redeem_status:
          title: Redeem Status
          type: string
        l1_tx_hash:
          title: L1 Tx Hash
          type: string
        l1_block:
          default: null
          title: L1 Block
          type: integer
          nullable: true
        l1_time:
          default: null
          title: L1 Time
          format: date-time
          type: string
          nullable: true
        l2_tx_hash:
          title: L2 Tx Hash
          type: string
        l2_block:
          default: null
          title: L2 Block
          type: integer
          nullable: true
        l2_time:
          default: null
          title: L2 Time
          format: date-time
          type: string
          nullable: true
        l2_redeem_tx_hash:
          title: L2 Redeem Tx Hash
          type: string
        initiated_time:
          format: date-time
          title: Initiated Time
          type: string
        completed_time:
          default: null
          title: Completed Time
          format: date-time
          type: string
          nullable: true
        duration_s:
          default: null
          title: Duration S
          type: number
          nullable: true
      required:
        - transfer_id
        - direction
        - asset
        - route
        - status
        - l1_token
        - l2_token
        - symbol
        - decimals
        - from_addr
        - to_addr
        - amount_raw
        - amount
        - ticket_id
        - redeem_status
        - l1_tx_hash
        - l2_tx_hash
        - l2_redeem_tx_hash
        - initiated_time
      title: BridgeTransfer
      type: object

````