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

# Get all tokens

> Returns all indexed tokens with their current prices.



## OpenAPI

````yaml https://gateway.ramses.xyz/v3/hyperevm/swagger/json get /tokens
openapi: 3.1.0
info:
  title: Ramses API - HyperEVM
  description: |-
    REST API for the Ramses DEX on HyperEVM.

    ## Rate Limiting

    - **30 requests per 30 seconds** per client IP address

    ## Caching

    Some endpoints are cached to improve performance:
    - `/stats`: 60 seconds
    - `/protocol-info`: 30 seconds
    - `/hyperram-data`: 30 seconds
    - `/circ_supply`, `/fdv`, `/hyperram_fdv`: 5 minutes
  version: 4.0.0
  contact:
    name: Ramses
    url: https://gateway.ramses.xyz/v3/hyperevm
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
  - url: https://gateway.ramses.xyz/v3/hyperevm
    description: Production
security: []
tags:
  - name: Health
    description: API and indexer health status
  - name: Pools
    description: Liquidity pool data, TVL, APRs, and rewards
  - name: Tokens
    description: Token information and prices
  - name: Stats
    description: Historical protocol and pool statistics
  - name: Protocol
    description: Protocol-wide token supply, emissions, and voting metrics
  - name: Positions
    description: User position data
  - name: HyperRAM
    description: X33 token compound/rebase data and APR calculations
  - name: CoinGecko
    description: Endpoints for CoinGecko integration (supply data)
  - name: Fee Launcher
    description: Dynamic fee schedules for new pool launches
paths:
  /tokens:
    get:
      tags:
        - Tokens
      summary: Get all tokens
      description: Returns all indexed tokens with their current prices.
      operationId: getTokens
      responses:
        '200':
          description: Array of all indexed tokens
          content:
            application/json:
              schema:
                description: Array of all indexed tokens
                type: array
                items:
                  description: Token from database
                  examples:
                    - id: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
                      symbol: USDC
                      name: USD Coin
                      decimals: 6
                      price: 1
                  type: object
                  required:
                    - id
                    - symbol
                    - name
                    - decimals
                    - price
                  additionalProperties: false
                  properties:
                    id:
                      description: Token contract address
                      type: string
                    symbol:
                      description: Token symbol
                      type: string
                    name:
                      description: Token name
                      type: string
                    decimals:
                      description: Token decimals
                      type: number
                    price:
                      description: Current price in USD
                      type: number

````