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

# Get token by address

> Metadata, bridge origin, supply (ERC-20: minted − burned), holder and transfer counts.



## OpenAPI

````yaml /elysium/openapi-rest.json get /elysium/testnet/tokens/{address}
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}:
    get:
      tags:
        - Elysium Testnet
      summary: Get token by address
      description: >-
        Metadata, bridge origin, supply (ERC-20: minted − burned), holder and
        transfer counts.
      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: 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:
                    $ref: '#/components/schemas/ElysiumTokenDetail'
                  execution_time_ms:
                    type: number
                  has_more:
                    type: boolean
        '404':
          description: Not found
        '422':
          description: Invalid parameter
components:
  schemas:
    ElysiumTokenDetail:
      properties:
        address:
          title: Address
          type: string
        standard:
          title: Standard
          type: string
        name:
          title: Name
          type: string
        symbol:
          title: Symbol
          type: string
        decimals:
          title: Decimals
          type: integer
        origin:
          title: Origin
          type: string
        l1_address:
          title: L1 Address
          type: string
        bridge_wallet:
          title: Bridge Wallet
          type: string
        first_block:
          title: First Block
          type: integer
        first_seen:
          format: date-time
          title: First Seen
          type: string
        transfer_count:
          default: 0
          title: Transfer Count
          type: integer
        total_supply_raw:
          default: null
          title: Total Supply Raw
          type: string
          nullable: true
        total_supply:
          default: null
          title: Total Supply
          type: number
          nullable: true
        holders:
          default: 0
          title: Holders
          type: integer
        last_transfer_time:
          default: null
          title: Last Transfer Time
          format: date-time
          type: string
          nullable: true
      required:
        - address
        - standard
        - name
        - symbol
        - decimals
        - origin
        - l1_address
        - bridge_wallet
        - first_block
        - first_seen
      title: ElysiumTokenDetail
      type: object

````