> ## Documentation Index
> Fetch the complete documentation index at: https://docs.raydium.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get locked CLMM positions for a wallet

> Retrieve all locked Concentrated Liquidity Market Maker positions owned by this wallet.
Returns position state including locked amounts, lock end time, and claimable fees.




## OpenAPI

````yaml /api-reference/openapi/owner-api-v1.yaml get /position/clmm-lock/{owner}
openapi: 3.0.3
info:
  title: Owner API
  description: >
    Retrieve per-wallet balances, positions, and claimable rewards across
    Raydium liquidity pools.

    Designed for wallets and portfolio dashboards to fetch owner-scoped data in
    a single request.
  version: 1.0.0
  contact:
    name: Raydium
    url: https://raydium.io
servers:
  - url: https://owner-v1.raydium.io
    description: Mainnet
  - url: https://owner-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Position
    description: Retrieve position balances and state per wallet
  - name: Pool Creation
    description: Retrieve pools created by a wallet
  - name: IDO
    description: Retrieve IDO participation data
  - name: Admin
    description: Administrative endpoints (internal use)
paths:
  /position/clmm-lock/{owner}:
    get:
      tags:
        - Position
      summary: Get locked CLMM positions for a wallet
      description: >
        Retrieve all locked Concentrated Liquidity Market Maker positions owned
        by this wallet.

        Returns position state including locked amounts, lock end time, and
        claimable fees.
      operationId: getOwnerClmmLockPositions
      parameters:
        - name: owner
          in: path
          required: true
          description: Wallet public key (base58)
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                description: Locked position data structure
        '404':
          description: Wallet has no locked CLMM positions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      description: Standard error response
      properties:
        id:
          type: string
          description: Request ID (UUID)
        success:
          type: boolean
          example: false
      required:
        - id
        - success

````