> ## 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.

# 获取钱包的锁定 CLMM 头寸

> 检索该钱包拥有的所有锁定 Concentrated Liquidity Market Maker 头寸。
返回头寸状态，包括锁定金额、锁定结束时间和可领取费用。




## OpenAPI

````yaml /zh/api-reference/openapi/owner-api-v1.yaml get /position/clmm-lock/{owner}
openapi: 3.0.3
info:
  title: Owner API
  description: |
    检索跨 Raydium 流动性池的单钱包余额、头寸和可领取奖励。
    为钱包和投资组合仪表板设计，可在单个请求中获取钱包范围的数据。
  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: 检索单钱包的头寸余额和状态
  - name: Pool Creation
    description: 检索钱包创建的池
  - name: IDO
    description: 检索 IDO 参与数据
  - name: Admin
    description: 管理端点（内部使用）
paths:
  /position/clmm-lock/{owner}:
    get:
      tags:
        - Position
      summary: 获取钱包的锁定 CLMM 头寸
      description: |
        检索该钱包拥有的所有锁定 Concentrated Liquidity Market Maker 头寸。
        返回头寸状态，包括锁定金额、锁定结束时间和可领取费用。
      operationId: getOwnerClmmLockPositions
      parameters:
        - name: owner
          in: path
          required: true
          description: 钱包公钥（base58）
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                description: 锁定头寸数据结构
        '404':
          description: 钱包没有锁定 CLMM 头寸
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      description: 标准错误响应
      properties:
        id:
          type: string
          description: 请求 ID（UUID）
        success:
          type: boolean
          example: false
      required:
        - id
        - success

````