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

# Get accumulated creator fees for a wallet

> Retrieve all CPMM pools where this wallet is the creator, along with accumulated but unclaimed
creator fees per pool. Returns an empty array if the wallet has no creator fees cached.

**Note:** This endpoint caches user data periodically. Very recent creator fee activity may not
appear immediately.




## OpenAPI

````yaml /api-reference/openapi/temp-api-v1.yaml get /cp-creator-fee
openapi: 3.0.3
info:
  title: Temp API
  description: >
    A holding pen for short-lived endpoints that do not have a permanent home in
    the main Raydium API.

    Endpoints in this service may change, be deprecated, or move without notice.


    **Stability warning:** This service prioritizes rapid iteration and minimal
    API stability guarantees.

    Only use for non-critical paths, internal tools, or features in active
    development.
  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: Temporary endpoints (unstable)
paths:
  /cp-creator-fee:
    get:
      tags:
        - Temporary
      summary: Get accumulated creator fees for a wallet
      description: >
        Retrieve all CPMM pools where this wallet is the creator, along with
        accumulated but unclaimed

        creator fees per pool. Returns an empty array if the wallet has no
        creator fees cached.


        **Note:** This endpoint caches user data periodically. Very recent
        creator fee activity may not

        appear immediately.
      operationId: getCpCreatorFee
      parameters:
        - name: wallet
          in: query
          required: true
          description: Wallet public key (base58)
          schema:
            type: string
            example: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnop
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatorFeeResponse'
        '400':
          description: Invalid wallet address
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    CreatorFeeResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: array
          description: Array of pools with accumulated creator fees
          items:
            $ref: '#/components/schemas/CreatorFeeItem'
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: Error message
      required:
        - success
        - msg
    CreatorFeeItem:
      type: object
      description: A single CPMM pool with accumulated creator fees
      properties:
        poolInfo:
          type: object
          description: Pool metadata (structure varies; see pools API for schema)
        poolKey:
          type: object
          description: Pool configuration key
        fee:
          $ref: '#/components/schemas/FeeAmount'
      required:
        - poolInfo
        - poolKey
        - fee
    FeeAmount:
      type: object
      description: Accumulated fee amounts in raw token units
      properties:
        amountA:
          type: string
          description: Creator fee amount for token A (in smallest units)
        amountB:
          type: string
          description: Creator fee amount for token B (in smallest units)
      required:
        - amountA
        - amountB

````