> ## 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.

# 지갑의 누적 크리에이터 수수료 조회

> 이 지갑이 크리에이터인 모든 CPMM 풀과 풀별로 누적되었지만 아직 청구되지 않은 크리에이터 수수료를 반환합니다. 캐시된 크리에이터 수수료가 없으면 빈 배열을 반환합니다.

**참고:** 이 엔드포인트는 사용자 데이터를 주기적으로 캐싱합니다. 아주 최근의 크리에이터 수수료 활동은 즉시 반영되지 않을 수 있습니다.




## OpenAPI

````yaml /ko/api-reference/openapi/temp-api-v1.yaml get /cp-creator-fee
openapi: 3.0.3
info:
  title: Temp API
  description: |
    메인 Raydium API에 영구적인 위치가 없는 단기 엔드포인트를 위한 임시 공간입니다.
    이 서비스의 엔드포인트는 사전 고지 없이 변경되거나 지원이 중단되거나 이동될 수 있습니다.

    **안정성 경고:** 이 서비스는 빠른 반복 개발을 우선시하며 API 안정성을 최소한으로만 보장합니다.
    비중요 경로, 내부 도구, 또는 개발 중인 기능에만 사용하세요.
  version: 1.0.0
  contact:
    name: Raydium
    url: https://raydium.io
servers:
  - url: https://temp-api-v1.raydium.io
    description: Mainnet
  - url: https://temp-api-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Temporary
    description: 임시 엔드포인트 (불안정)
paths:
  /cp-creator-fee:
    get:
      tags:
        - Temporary
      summary: 지갑의 누적 크리에이터 수수료 조회
      description: >
        이 지갑이 크리에이터인 모든 CPMM 풀과 풀별로 누적되었지만 아직 청구되지 않은 크리에이터 수수료를 반환합니다. 캐시된
        크리에이터 수수료가 없으면 빈 배열을 반환합니다.


        **참고:** 이 엔드포인트는 사용자 데이터를 주기적으로 캐싱합니다. 아주 최근의 크리에이터 수수료 활동은 즉시 반영되지 않을 수
        있습니다.
      operationId: getCpCreatorFee
      parameters:
        - name: wallet
          in: query
          required: true
          description: 지갑 공개 키 (base58)
          schema:
            type: string
            example: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnop
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatorFeeResponse'
        '400':
          description: 유효하지 않은 지갑 주소
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: 서버 오류
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    CreatorFeeResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: array
          description: 누적 크리에이터 수수료가 있는 풀 배열
          items:
            $ref: '#/components/schemas/CreatorFeeItem'
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: 오류 메시지
      required:
        - success
        - msg
    CreatorFeeItem:
      type: object
      description: 누적 크리에이터 수수료가 있는 단일 CPMM 풀
      properties:
        poolInfo:
          type: object
          description: 풀 메타데이터 (구조는 다양함; 스키마는 풀 API 참조)
        poolKey:
          type: object
          description: 풀 설정 키
        fee:
          $ref: '#/components/schemas/FeeAmount'
      required:
        - poolInfo
        - poolKey
        - fee
    FeeAmount:
      type: object
      description: 원시 토큰 단위의 누적 수수료 금액
      properties:
        amountA:
          type: string
          description: 토큰 A의 크리에이터 수수료 금액 (최소 단위)
        amountB:
          type: string
          description: 토큰 B의 크리에이터 수수료 금액 (최소 단위)
      required:
        - amountA
        - amountB

````