> ## 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 live token prices

> Fetches live USD prices for the given token addresses. Results are cached for 30 seconds.



## OpenAPI

````yaml https://gateway.ramses.xyz/v3/hyperevm/swagger/json get /token-prices
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:
  /token-prices:
    get:
      tags:
        - Tokens
      summary: Get live token prices
      description: >-
        Fetches live USD prices for the given token addresses. Results are
        cached for 30 seconds.
      operationId: getToken-prices
      parameters:
        - name: tokens
          in: query
          required: true
          schema:
            description: >-
              Comma-separated list of token addresses (0x-prefixed, 40 hex
              characters each)
            examples:
              - >-
                0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
            type: string
      responses:
        '200':
          description: Array of token addresses with their live USD prices
          content:
            application/json:
              schema:
                description: Array of token addresses with their live USD prices
                examples:
                  - - address: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
                      priceUsd: 1
                    - address: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2'
                      priceUsd: 3500
                type: array
                items:
                  description: Token address with its live USD price
                  type: object
                  properties:
                    address:
                      description: Token contract address
                      type: string
                    priceUsd:
                      description: Current live price in USD
                      type: number
                  required:
                    - address
                    - priceUsd
        '400':
          description: Validation error message
          content:
            text/plain:
              schema:
                description: Validation error message
                type: string

````