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

# List Elysium transactions

> List Elysium transactions



## OpenAPI

````yaml /elysium/openapi-rest.json get /elysium/testnet/transactions
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:
    get:
      tags:
        - Elysium Testnet
      summary: List Elysium transactions
      description: List Elysium transactions
      parameters:
        - name: block_number
          in: query
          schema:
            description: Filter by block number
            type: integer
            nullable: true
          description: Filter by block number
        - name: from_addr
          in: query
          schema:
            description: Filter by sender
            type: string
            pattern: ^0x[0-9a-fA-F]{40}$
            nullable: true
          description: Filter by sender
        - name: to_addr
          in: query
          schema:
            description: Filter by recipient
            type: string
            pattern: ^0x[0-9a-fA-F]{40}$
            nullable: true
          description: Filter by recipient
        - name: method_id
          in: query
          schema:
            description: Filter by 4-byte function selector
            type: string
            pattern: ^0x[0-9a-fA-F]{8}$
            nullable: true
          description: Filter by 4-byte function selector
        - name: tx_type
          in: query
          schema:
            description: >-
              Filter by type: 0x0, 0x2, 0x64 (deposit), 0x68 (retry), 0x69
              (retryable), 0x6a (system)
            type: string
            nullable: true
          description: >-
            Filter by type: 0x0, 0x2, 0x64 (deposit), 0x68 (retry), 0x69
            (retryable), 0x6a (system)
        - name: start_time
          in: query
          schema:
            description: Start time (UTC)
            type: string
            format: date-time
            nullable: true
          description: Start time (UTC)
        - name: end_time
          in: query
          schema:
            description: End time (UTC)
            type: string
            format: date-time
            nullable: true
          description: End time (UTC)
        - name: include_system
          in: query
          schema:
            type: boolean
            description: Include ArbOS system transactions (0x6a)
            default: true
          description: Include ArbOS system transactions (0x6a)
        - name: include_spam
          in: query
          schema:
            type: boolean
            description: >-
              Include known spam (empty transfers to 0x…dead, pulse()
              heartbeats)
            default: true
          description: Include known spam (empty transfers to 0x…dead, pulse() heartbeats)
        - name: limit
          in: query
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 100
        - name: offset
          in: query
          schema:
            type: integer
            minimum: 0
            default: 0
        - 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/ElysiumTransaction'
                  execution_time_ms:
                    type: number
                  has_more:
                    type: boolean
        '422':
          description: Invalid parameter
components:
  schemas:
    ElysiumTransaction:
      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
      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: ElysiumTransaction
      type: object

````