> ## 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 user legacy positions

> Returns pool addresses where the user has legacy (non-CL) liquidity positions.



## OpenAPI

````yaml https://gateway.ramses.xyz/v3/hyperevm/swagger/json get /legacy-mints/{userAddress}
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:
  /legacy-mints/{userAddress}:
    get:
      tags:
        - Positions
      summary: Get user legacy positions
      description: >-
        Returns pool addresses where the user has legacy (non-CL) liquidity
        positions.
      operationId: getLegacy-mintsByUserAddress
      parameters:
        - name: userAddress
          in: path
          required: true
          schema:
            pattern: ^0x[a-fA-F0-9]{40}$
            description: Ethereum address (0x-prefixed, 40 hex characters)
            examples:
              - '0x555570a286F15EbDFE42B66eDE2f724Aa1AB5555'
            type: string
      responses:
        '200':
          description: Array of pool addresses where user has legacy positions
          content:
            application/json:
              schema:
                description: Array of pool addresses where user has legacy positions
                examples:
                  - - '0x1234567890abcdef1234567890abcdef12345678'
                    - '0xabcdef1234567890abcdef1234567890abcdef12'
                type: array
                items:
                  type: string

````