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

# Balances of an address

> Native HYPE (from the archive node) and token balances rebuilt from Transfer events.



## OpenAPI

````yaml /elysium/openapi-rest.json get /elysium/testnet/user/{address}/balances
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/user/{address}/balances:
    get:
      tags:
        - Elysium Testnet
      summary: Balances of an address
      description: >-
        Native HYPE (from the archive node) and token balances rebuilt from
        Transfer events.
      parameters:
        - name: address
          in: path
          schema:
            type: string
            pattern: ^0x[0-9a-fA-F]{40}$
            description: User address
          required: true
          description: User address
        - name: block
          in: query
          schema:
            description: 'Balances as of this block (default: latest)'
            type: integer
            minimum: 0
            nullable: true
          description: 'Balances as of this block (default: latest)'
        - 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/UserBalances'
                  execution_time_ms:
                    type: number
                  has_more:
                    type: boolean
        '404':
          description: Not found
        '422':
          description: Invalid parameter
components:
  schemas:
    UserBalances:
      properties:
        address:
          title: Address
          type: string
        block:
          default: null
          title: Block
          type: integer
          nullable: true
        native_balance_wei:
          default: null
          title: Native Balance Wei
          type: string
          nullable: true
        native_balance:
          default: null
          title: Native Balance
          type: number
          nullable: true
        tokens:
          default: []
          items:
            $ref: '#/components/schemas/TokenBalance'
          title: Tokens
          type: array
      required:
        - address
      title: UserBalances
      type: object
    TokenBalance:
      properties:
        token:
          title: Token
          type: string
        standard:
          title: Standard
          type: string
        symbol:
          title: Symbol
          type: string
        name:
          title: Name
          type: string
        decimals:
          title: Decimals
          type: integer
        balance_raw:
          title: Balance Raw
          type: string
        balance:
          title: Balance
          type: number
      required:
        - token
        - standard
        - symbol
        - name
        - decimals
        - balance_raw
        - balance
      title: TokenBalance
      type: object

````