> ## 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 ポジションメタデータを取得

> プール詳細、リクイディティ金額、未請求手数料、USD 評価を含む完全なポジションメタデータを取得します。ポジションビジュアル描画に適した動的 NFT インターフェイスオブジェクトを返します。



## OpenAPI

````yaml /ja/api-reference/openapi/dynamic-ipfs-v1.yaml get /clmm/position
openapi: 3.0.3
info:
  title: Dynamic IPFS API
  description: >-
    CLMM ポジションの動的 NFT メタデータと画像を再生成します。dApp が
    リアルタイムのポジションビジュアルと評価データ（プール詳細、金額、手数料、報酬を含む）を取得するために使用されます。


    このサービスは IPFS にポジションメタデータをキャッシュし、ポジション ID による計算済みポジション状態（USD 値、TVL
    パーセンテージ、未請求手数料）を提供します。CLMM および CPMM プールタイプの両方をサポートしています。
  version: 1.0.0
  contact:
    name: Raydium
    url: https://raydium.io
servers:
  - url: https://dynamic-ipfs.raydium.io
    description: Mainnet
  - url: https://dynamic-ipfs-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: CLMM Position
    description: Concentrated Liquidity Market Maker ポジションの動的メタデータを取得
  - name: Locked Positions
    description: ロック済みポジションデータを取得（CLMM および CPMM）
paths:
  /clmm/position:
    get:
      tags:
        - CLMM Position
      summary: CLMM ポジションメタデータを取得
      description: >-
        プール詳細、リクイディティ金額、未請求手数料、USD 評価を含む完全なポジションメタデータを取得します。ポジションビジュアル描画に適した動的
        NFT インターフェイスオブジェクトを返します。
      operationId: getClmmPosition
      parameters:
        - name: id
          in: query
          required: true
          description: ポジションアカウント公開鍵（base58）
          schema:
            type: string
            example: 4Ygp92zRvl4kCr97V3Zs5xg4k3qX1tN6m8pR2vL9jA1
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CLNFTInterface'
        '400':
          description: 無効なポジション ID
          content:
            text/plain:
              schema:
                type: string
                example: params error 10001
        '404':
          description: ポジションが見つかりません
          content:
            text/plain:
              schema:
                type: string
        '500':
          description: サーバーエラー
          content:
            text/plain:
              schema:
                type: string
components:
  schemas:
    CLNFTInterface:
      type: object
      description: プール詳細と評価を含む完全な CLMM ポジション
      properties:
        poolInfo:
          $ref: '#/components/schemas/PoolInfoConcentrated'
        positionInfo:
          $ref: '#/components/schemas/CLPositionInfo'
      required:
        - poolInfo
        - positionInfo
    PoolInfoConcentrated:
      type: object
      description: Concentrated Liquidity Market Maker プール情報
      properties:
        id:
          type: string
          description: プール ID
        programId:
          type: string
          description: プールを所有するプログラム ID
        mintA:
          $ref: '#/components/schemas/MintInfo'
        mintB:
          $ref: '#/components/schemas/MintInfo'
        tvl:
          type: number
          description: USD での Total Value Locked
        rewardDefaultInfos:
          type: array
          description: このプールの報酬トークン
          items:
            $ref: '#/components/schemas/RewardInfo'
    CLPositionInfo:
      type: object
      description: CLMM ポジション状態
      properties:
        tvlPercentage:
          type: number
          description: プールに占めるポジション TVL のパーセンテージ（0-100）
        usdValue:
          type: number
          description: USD でのポジション値
        amountA:
          type: number
          description: ポジション内のトークン A 金額
        amountB:
          type: number
          description: ポジション内のトークン B 金額
        unclaimedFee:
          $ref: '#/components/schemas/UnclaimedFeeInfo'
      required:
        - tvlPercentage
        - usdValue
        - amountA
        - amountB
        - unclaimedFee
    MintInfo:
      type: object
      properties:
        address:
          type: string
          description: トークンミントアドレス
        decimals:
          type: integer
          description: トークンデシマル
        symbol:
          type: string
          description: トークンシンボル
    RewardInfo:
      type: object
      properties:
        mint:
          $ref: '#/components/schemas/MintInfo'
    UnclaimedFeeInfo:
      type: object
      description: CLMM ポジションで累積された未請求フィー
      properties:
        amountA:
          type: number
          description: 未請求のトークン A フィー
        amountB:
          type: number
          description: 未請求のトークン B フィー
        usdFeeValue:
          type: number
          description: トレーディング フィーの USD 価値
        reward:
          type: array
          items:
            type: number
          description: リワード トークンごとの未請求リワード額
        usdRewardValue:
          type: number
          description: リワードの USD 価値
        usdValue:
          type: number
          description: 未請求価値の合計（USD）

````