> ## 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 HyperRAM compound data

> Returns X33 (HyperRAM) compound and rebase data with APR calculations for each epoch. Data is cached for 30 seconds.



## OpenAPI

````yaml https://gateway.ramses.xyz/v3/hyperevm/swagger/json get /hyperram-data
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:
  /hyperram-data:
    get:
      tags:
        - HyperRAM
      summary: Get HyperRAM compound data
      description: >-
        Returns X33 (HyperRAM) compound and rebase data with APR calculations
        for each epoch. Data is cached for 30 seconds.
      operationId: getHyperram-data
      responses:
        '200':
          description: Liquid staking token compound and rebase data with APR calculations
          content:
            application/json:
              schema:
                description: >-
                  Liquid staking token compound and rebase data with APR
                  calculations
                type: object
                properties:
                  epochs:
                    description: Historical epoch data
                    type: array
                    items:
                      description: Liquid staking token epoch performance data
                      examples:
                        - period: 52
                          compoundAmount: '1000000000000000000000'
                          rebaseAmount: '500000000000000000000'
                          newRatio: '1.05'
                          oldRatio: '1.0'
                          rebaseAPR: 15.5
                          incentivesAPR: 31
                          totalAPR: 46.5
                          incentivesWPR: 0.6
                          rebaseWPR: 0.3
                          totalWPR: 0.9
                      type: object
                      properties:
                        period:
                          description: Epoch period number
                          type: number
                        compoundAmount:
                          description: Compound amount (wei)
                          type: string
                        rebaseAmount:
                          description: Rebase amount (wei)
                          type: string
                        newRatio:
                          description: Token ratio after epoch
                          type: string
                        oldRatio:
                          description: Token ratio before epoch
                          type: string
                        rebaseAPR:
                          description: Rebase APR for this epoch
                          type: number
                        incentivesAPR:
                          description: Incentives APR for this epoch
                          type: number
                        totalAPR:
                          description: Total APR for this epoch
                          type: number
                        incentivesWPR:
                          description: Weekly percentage return from incentives
                          type: number
                        rebaseWPR:
                          description: Weekly percentage return from rebases
                          type: number
                        totalWPR:
                          description: Total weekly percentage return
                          type: number
                      required:
                        - period
                        - compoundAmount
                        - rebaseAmount
                        - newRatio
                        - oldRatio
                        - rebaseAPR
                        - incentivesAPR
                        - totalAPR
                        - incentivesWPR
                        - rebaseWPR
                        - totalWPR
                  total:
                    description: Aggregate totals
                    type: object
                    properties:
                      rebaseAmount:
                        description: Total rebase amount
                        type: number
                      compoundAmount:
                        description: Total compound amount
                        type: number
                      totalAmount:
                        description: Total amount (rebase + compound)
                        type: number
                      rollingAPR:
                        description: Rolling APR based on last 4 epochs
                        type: number
                    required:
                      - rebaseAmount
                      - compoundAmount
                      - totalAmount
                      - rollingAPR
                required:
                  - epochs
                  - total
                additionalProperties: false

````