> ## 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 ダイナミックフィー設定を取得

> `enableDynamicFee=true` を `CreateCustomizablePool` に渡した際に新規 CLMM プールが選択できる、調整済み `DynamicFeeConfig` ティアの一覧を取得します。各エントリには、ボラティリティ追跡サーチャージを制御するティアごとのパラメーター（フィルター期間・減衰期間・減衰係数・ダイナミックフィー制御・最大ボラティリティアキュムレーター）が含まれます。60 秒キャッシュ。




## OpenAPI

````yaml /ja/api-reference/openapi/api-v3.yaml get /main/clmm-dynamic-config
openapi: 3.0.3
info:
  title: Raydium API v3
  version: 3.0.0
  description: >-
    Raydium API v3 は、Solana ブロックチェーン上のリクイディティプール・ミント情報・ファーム詳細・IDO
    プール・チェーンメタデータを照会するための REST
    エンドポイントを提供します。ウォレット・アグリゲーター・トレーダーが価格フィード・プールデータ・ルーティング情報を取得する際に使用します。
servers:
  - url: https://api-v3.raydium.io
    description: 本番環境（Mainnet）
  - url: https://api-v3-devnet.raydium.io
    description: 開発環境（Devnet）
security: []
tags:
  - name: Main
    description: チェーン情報・TVL・設定に関するコア API エンドポイント
  - name: Mint
    description: トークンのミント情報と価格
  - name: Pools
    description: リクイディティプールの情報・キー・履歴データ
  - name: Farms
    description: ファームプールの情報とキー
  - name: IDO
    description: IDO プールの情報とキー
paths:
  /main/clmm-dynamic-config:
    get:
      tags:
        - Main
      summary: CLMM ダイナミックフィー設定を取得
      description: >
        `enableDynamicFee=true` を `CreateCustomizablePool` に渡した際に新規 CLMM
        プールが選択できる、調整済み `DynamicFeeConfig`
        ティアの一覧を取得します。各エントリには、ボラティリティ追跡サーチャージを制御するティアごとのパラメーター（フィルター期間・減衰期間・減衰係数・ダイナミックフィー制御・最大ボラティリティアキュムレーター）が含まれます。60
        秒キャッシュ。
      operationId: getMainClmmDynamicConfig
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponse'
                  - type: object
                    properties:
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: DynamicFeeConfig PDA
                            index:
                              type: integer
                            filterPeriod:
                              type: integer
                              description: 秒単位。ボラティリティはこのウィンドウ経過後にゼロへ減衰します
                            decayPeriod:
                              type: integer
                              description: 秒単位。アキュムレーター減衰の実効半減期
                            reductionFactor:
                              type: integer
                              description: ステップごとの減衰分子（分母 = 10000）
                            maxFeeRateNumerator:
                              type: integer
                              description: ダイナミックフィーサーチャージの上限（分母 = 1_000_000）
                            dynamicFeeControl:
                              type: integer
                              description: ティック距離スケーリングの分子（分母 = 100_000）
components:
  schemas:
    ApiResponse:
      type: object
      description: >-
        共通レスポンスエンベロープ。`data` フィールドは各エンドポイントのレスポーススキーマが `allOf`
        を通じて提供するため、ベースエンベロープ上では宣言されません。
      required:
        - id
        - success
      properties:
        id:
          type: string
          description: リクエスト ID（UUID）
        success:
          type: boolean
          description: リクエストが成功したかどうか
        msg:
          type: string
          description: success が false の場合のエラーメッセージ

````