> ## 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 protocol statistics

> Returns daily protocol-wide statistics combining both legacy and concentrated liquidity pools. Data is cached for 60 seconds.



## OpenAPI

````yaml https://gateway.ramses.xyz/v3/hyperevm/swagger/json get /stats
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:
  /stats:
    get:
      tags:
        - Stats
      summary: Get protocol statistics
      description: >-
        Returns daily protocol-wide statistics combining both legacy and
        concentrated liquidity pools. Data is cached for 60 seconds.
      operationId: getStats
      responses:
        '200':
          description: Response for status 200
          content:
            application/json:
              schema:
                type: array
                items:
                  description: Combined daily stats for legacy and CL pools
                  type: object
                  required:
                    - legacy
                    - cl
                    - timestamp
                  additionalProperties: false
                  properties:
                    legacy:
                      anyOf:
                        - description: Protocol-wide daily statistics
                          examples:
                            - startOfDay: 1709510400
                              volumeUSD: '1234567.89'
                              tvlUSD: '9876543.21'
                              feesUSD: '12345.67'
                              voterFeesUSD: '1234.56'
                          type: object
                          properties:
                            startOfDay:
                              description: Unix timestamp of day start
                              type: number
                            volumeUSD:
                              description: Total volume in USD
                              type: string
                            tvlUSD:
                              description: Total value locked in USD
                              type: string
                            feesUSD:
                              description: Total fees in USD
                              type: string
                            voterFeesUSD:
                              description: Voter fees in USD
                              type: string
                          required:
                            - startOfDay
                            - volumeUSD
                            - tvlUSD
                            - feesUSD
                            - voterFeesUSD
                        - type: 'null'
                    cl:
                      anyOf:
                        - description: Protocol-wide daily statistics
                          examples:
                            - startOfDay: 1709510400
                              volumeUSD: '1234567.89'
                              tvlUSD: '9876543.21'
                              feesUSD: '12345.67'
                              voterFeesUSD: '1234.56'
                          type: object
                          properties:
                            startOfDay:
                              description: Unix timestamp of day start
                              type: number
                            volumeUSD:
                              description: Total volume in USD
                              type: string
                            tvlUSD:
                              description: Total value locked in USD
                              type: string
                            feesUSD:
                              description: Total fees in USD
                              type: string
                            voterFeesUSD:
                              description: Voter fees in USD
                              type: string
                          required:
                            - startOfDay
                            - volumeUSD
                            - tvlUSD
                            - feesUSD
                            - voterFeesUSD
                        - type: 'null'
                    timestamp:
                      description: Unix timestamp
                      type: number

````