> ## 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 /ko/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: 프로덕션 (메인넷)
  - url: https://api-v3-devnet.raydium.io
    description: 개발 (데브넷)
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: 초 단위; 이 기간이 지나면 변동성이 0으로 감쇠됩니다
                            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인 경우의 오류 메시지

````