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

# Bridged token registry

> Tokens that crossed the bridge, with their address on both chains and transfer counts.



## OpenAPI

````yaml /elysium/openapi-rest.json get /elysium/testnet/bridge/tokens
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/tokens:
    get:
      tags:
        - Elysium Testnet
      summary: Bridged token registry
      description: >-
        Tokens that crossed the bridge, with their address on both chains and
        transfer counts.
      parameters:
        - name: route
          in: query
          schema:
            type: string
            enum:
              - canonical
              - mirror
          description: >-
            canonical (HyperEVM token → Elysium) or mirror (Elysium-native →
            HyperEVM)
        - 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/BridgeToken'
                  execution_time_ms:
                    type: number
                  has_more:
                    type: boolean
        '422':
          description: Invalid parameter
components:
  schemas:
    BridgeToken:
      properties:
        l2_token:
          title: L2 Token
          type: string
        l1_token:
          title: L1 Token
          type: string
        route:
          title: Route
          type: string
        symbol:
          title: Symbol
          type: string
        name:
          title: Name
          type: string
        decimals:
          title: Decimals
          type: integer
        bridge_wallet:
          title: Bridge Wallet
          type: string
        deposits:
          title: Deposits
          type: integer
        withdrawals:
          title: Withdrawals
          type: integer
        last_transfer_time:
          default: null
          title: Last Transfer Time
          format: date-time
          type: string
          nullable: true
      required:
        - l2_token
        - l1_token
        - route
        - symbol
        - name
        - decimals
        - bridge_wallet
        - deposits
        - withdrawals
      title: BridgeToken
      type: object

````