---
title: "Get CLMM position metadata"
method: GET
path: "/clmm/position"
tags: ["CLMM Position"]
---

# Get CLMM position metadata

`GET /clmm/position`

Fetch complete position metadata including pool details, liquidity amounts, unclaimed fees,
and USD valuation. Returns a dynamic NFT interface object suitable for rendering position visuals.

## Query parameters

- `id` string, required

## Response `200`

Success

- CLNFTInterface — Complete CLMM position with pool details and valuation
  - `poolInfo` PoolInfoConcentrated, required — Concentrated Liquidity Market Maker pool information
    - `id` string — Pool ID
    - `programId` string — Program ID owning the pool
    - `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
    - `tvl` number — Total Value Locked in USD
    - `rewardDefaultInfos` RewardInfo[] — Reward tokens for this pool
      - `mint` MintInfo
        - `address` string — Token mint address
        - `decimals` integer — Token decimals
        - `symbol` string — Token symbol
  - `positionInfo` CLPositionInfo, required — CLMM position state
    - `tvlPercentage` number, required — Position TVL as percentage of pool (0-100)
    - `usdValue` number, required — Position value in USD
    - `amountA` number, required — Token A amount in position
    - `amountB` number, required — Token B amount in position
    - `unclaimedFee` UnclaimedFeeInfo, required — Accumulated but unclaimed fees in CLMM position
      - `amountA` number — Unclaimed Token A fees
      - `amountB` number — Unclaimed Token B fees
      - `usdFeeValue` number — Trading fee USD value
      - `reward` number[] — Unclaimed reward amounts per reward token
      - `usdRewardValue` number — Reward USD value
      - `usdValue` number — Total unclaimed value in USD

## Other responses

- `400` — Invalid position ID
- `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)
