> ## 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 持倉

> 檢索此錢包擁有的所有已鎖定集中流動性做市商持倉。
傳回持倉狀態，包括已鎖定金額、鎖定結束時間和可領取費用。




## OpenAPI

````yaml /zh-Hant/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: |
        檢索此錢包擁有的所有已鎖定集中流動性做市商持倉。
        傳回持倉狀態，包括已鎖定金額、鎖定結束時間和可領取費用。
      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

````