---
title: "Get locked CPMM position metadata"
method: GET
path: "/lock/cpmm/position"
tags: ["Locked Positions"]
---

# Get locked CPMM position metadata

`GET /lock/cpmm/position`

Fetch metadata for a locked Constant Product Market Maker position. Returns LP token amounts,
pool share percentage, and claimable fees from locking.

## Query parameters

- `id` string, required

## Response `200`

Success

- CPNFTInterface — Complete CPMM locked position with pool details and valuation
  - `poolInfo` PoolInfoCPMM, required — Constant Product Market Maker pool information
    - `id` string
    - `mintA` MintInfo
      - `address` string — Token mint address
      - `decimals` integer — Token decimals
      - `symbol` string — Token symbol
    - `mintB` MintInfo
      - `address` string — Token mint address
      - `decimals` integer — Token decimals
      - `symbol` string — Token symbol
    - `lpMint` MintInfo
      - `address` string — Token mint address
      - `decimals` integer — Token decimals
      - `symbol` string — Token symbol
    - `lpPrice` number — LP token price in USD
  - `positionInfo` CPPositionInfo, required — CPMM locked position state
    - `tvlPercentage` number, required — Pool share as percentage (0-100)
    - `usdValue` number, required — Locked LP value in USD
    - `amountA` number, required — Token A underlying amount
    - `amountB` number, required — Token B underlying amount
    - `unclaimedFee` CPUnclaimedFeeInfo, required — Claimable LP and fees from locked CPMM position
      - `lp` number — Claimable LP amount
      - `amountA` number — Claimable Token A
      - `amountB` number — Claimable Token B
      - `usdValue` number — Claimable value in USD

## Other responses

- `400` — Invalid position ID or owner mismatch
- `404` — Position not found
- `500` — Server error

---

[API](https://skmtc.net/raydium/apis/api-v1-v2-legacy.md) · [All operations](https://skmtc.net/raydium/apis/api-v1-v2-legacy/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/raydium/api-v1-v2-legacy/revisions/cca93975de95/schema)
