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

# Lấy vị trí CLMM bị khóa của một ví

> Lấy tất cả vị trí Concentrated Liquidity Market Maker (CLMM) bị khóa được sở hữu bởi ví này.
Trả về trạng thái vị trí bao gồm số lượng bị khóa, thời gian kết thúc khóa, và phí có thể nhận được.




## OpenAPI

````yaml /vi/api-reference/openapi/owner-api-v1.yaml get /position/clmm-lock/{owner}
openapi: 3.0.3
info:
  title: API Chủ Sở Hữu
  description: >
    Lấy số dư trên mỗi ví, vị trí, và phần thưởng có thể nhận được trên các
    liquidity pool của Raydium.

    Tiện ích cho các ví và bảng điều khiển danh mục đầu tư để lấy dữ liệu theo
    phạm vi chủ sở hữu trong một yêu cầu duy nhất.
  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: Lấy số dư vị trí và trạng thái cho mỗi ví
  - name: Pool Creation
    description: Lấy các pool do ví tạo
  - name: IDO
    description: Lấy dữ liệu tham gia IDO
  - name: Admin
    description: Các endpoint hành chính (sử dụng nội bộ)
paths:
  /position/clmm-lock/{owner}:
    get:
      tags:
        - Position
      summary: Lấy vị trí CLMM bị khóa của một ví
      description: >
        Lấy tất cả vị trí Concentrated Liquidity Market Maker (CLMM) bị khóa
        được sở hữu bởi ví này.

        Trả về trạng thái vị trí bao gồm số lượng bị khóa, thời gian kết thúc
        khóa, và phí có thể nhận được.
      operationId: getOwnerClmmLockPositions
      parameters:
        - name: owner
          in: path
          required: true
          description: Khóa công khai ví (base58)
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                description: Cấu trúc dữ liệu vị trí bị khóa
        '404':
          description: Ví không có vị trí CLMM bị khóa
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      description: Phản hồi lỗi tiêu chuẩn
      properties:
        id:
          type: string
          description: ID yêu cầu (UUID)
        success:
          type: boolean
          example: false
      required:
        - id
        - success

````