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

# Get EVM internal transactions

> Returns a paginated list of EVM internal transactions. Only available on EVM chains with internal transaction indexing enabled.



## OpenAPI

````yaml /api-reference/rollup-indexer/openapi.yaml get /indexer/tx/v1/evm-internal-txs
openapi: 3.1.0
info:
  title: Indexer API
  description: >-
    Query indexed data including transactions, blocks, NFTs, and token holders
    across Initia Stack chains.
  version: 1.0.0
servers:
  - url: https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz
    description: evm-1 (testnet)
  - url: https://rollytics-api-move-1.anvil.asia-southeast.initia.xyz
    description: move-1 (testnet)
  - url: https://rollytics-api-wasm-1.anvil.asia-southeast.initia.xyz
    description: wasm-1 (testnet)
security: []
paths:
  /indexer/tx/v1/evm-internal-txs:
    get:
      tags:
        - EVM Internal Transactions
      summary: Get EVM internal transactions
      description: >-
        Returns a paginated list of EVM internal transactions. Only available on
        EVM chains with internal transaction indexing enabled.
      operationId: getEvmInternalTransactions
      parameters:
        - $ref: '#/components/parameters/paginationKey'
        - $ref: '#/components/parameters/paginationOffset'
        - $ref: '#/components/parameters/paginationLimit'
        - $ref: '#/components/parameters/paginationCountTotal'
        - $ref: '#/components/parameters/paginationReverse'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  internal_txs:
                    type: array
                    items:
                      $ref: '#/components/schemas/EvmInternalTx'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
        '404':
          description: EVM routes are not available on this chain
components:
  parameters:
    paginationKey:
      name: pagination.key
      in: query
      description: Cursor key for pagination.
      required: false
      schema:
        type: string
    paginationOffset:
      name: pagination.offset
      in: query
      description: Number of records to skip.
      required: false
      schema:
        type: integer
    paginationLimit:
      name: pagination.limit
      in: query
      description: Maximum number of records to return. Defaults to 100.
      required: false
      schema:
        type: integer
        default: 100
    paginationCountTotal:
      name: pagination.count_total
      in: query
      description: Whether to return the total count. Defaults to `true`.
      required: false
      schema:
        type: boolean
        default: true
    paginationReverse:
      name: pagination.reverse
      in: query
      description: When `true`, returns results in descending order. Defaults to `true`.
      required: false
      schema:
        type: boolean
        default: true
  schemas:
    EvmInternalTx:
      type: object
      properties:
        height:
          type: integer
          description: Block height.
        hash:
          type: string
          description: Parent transaction hash.
        parent_index:
          type: integer
          description: Index of the parent call in the trace.
        index:
          type: integer
          description: Index of this internal transaction in the trace.
        type:
          type: string
          description: Call type (e.g., `CALL`, `DELEGATECALL`, `STATICCALL`, `CREATE`).
        from:
          type: string
          description: Sender address.
        to:
          type: string
          description: Recipient address.
        input:
          type: string
          description: Input data (hex-encoded).
        output:
          type: string
          description: Output data (hex-encoded).
        value:
          type: string
          description: Value transferred (hex-encoded).
        gas:
          type: string
          description: Gas provided (hex-encoded).
        gasUsed:
          type: string
          description: Gas consumed (hex-encoded).
    Pagination:
      type: object
      description: Pagination metadata for list responses.
      properties:
        previous_key:
          type: string
          nullable: true
          description: Cursor key for the previous page.
        next_key:
          type: string
          nullable: true
          description: Cursor key for the next page. Null when there are no more results.
        total:
          type: string
          description: Total number of records matching the query.

````