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

# Token transfers

> Token transfers



## OpenAPI

````yaml /elysium/openapi-rest.json get /elysium/testnet/tokens/{address}/transfers
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/tokens/{address}/transfers:
    get:
      tags:
        - Elysium Testnet
      summary: Token transfers
      description: Token transfers
      parameters:
        - name: address
          in: path
          schema:
            type: string
            pattern: ^0x[0-9a-fA-F]{40}$
            description: Token contract address
          required: true
          description: Token contract address
        - name: holder
          in: query
          schema:
            description: Only transfers from or to this address
            type: string
            pattern: ^0x[0-9a-fA-F]{40}$
            nullable: true
          description: Only transfers from or to this address
        - 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: 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/ElysiumTokenTransfer'
                  execution_time_ms:
                    type: number
                  has_more:
                    type: boolean
        '422':
          description: Invalid parameter
components:
  schemas:
    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

````