> ## 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 circulating supply

> Returns the circulating supply of RAM tokens (total supply minus locked in xRAM). Data is cached for 5 minutes.



## OpenAPI

````yaml https://gateway.ramses.xyz/v3/hyperevm/swagger/json get /circ_supply
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:
  /circ_supply:
    get:
      tags:
        - CoinGecko
      summary: Get circulating supply
      description: >-
        Returns the circulating supply of RAM tokens (total supply minus locked
        in xRAM). Data is cached for 5 minutes.
      operationId: getCirc_supply
      responses:
        '200':
          description: Token supply response
          content:
            application/json:
              schema:
                description: Token supply response
                examples:
                  - result: '500000.0'
                type: object
                properties:
                  result:
                    description: Supply value (formatted, no decimals)
                    type: string
                required:
                  - result

````