Skip to main content
Claim creator fees from your PumpFun token with Launchpad Trade API
POST/pumpfun/claim-creator-fees
Collect your portion of trading fees generated by a PumpFun token. Any registered fee recipient can withdraw their accumulated SOL at any time.

Quick Start

curl -X POST https://api.launchpad.trade/pumpfun/claim-creator-fees \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tokenAddress": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
    "claimerPrivateKey": "YOUR_PRIVATE_KEY"
  }'

Parameters

ParameterTypeDescription
tokenAddressstringSolana address of the PumpFun token to claim fees from
claimerPrivateKeystringPrivate key of the wallet claiming its fees. Must be a registered fee recipient for this token

What Are Creator Fees?

PumpFun tokens generate trading fees on each swap. These fees are split among the wallets registered as fee recipients when the token was created.
  • Accumulated — fees build up over time from every trade on the bonding curve
  • Per-recipient — each wallet claims only its own share (based on sharePercent)
  • Independent — one recipient can claim without affecting the others
  • Repeatable — claim as often as you want, whenever new fees are available
Only wallets listed as fee recipients for the token can claim. If your wallet is not a recipient, the API returns a NOT_RECIPIENT error.

How It Works

1

Fees accumulate

Every trade on the PumpFun bonding curve generates fees. Your share accumulates until you claim.
2

Send claim request

You call this endpoint with the token address and your wallet private key.
3

Receive SOL

Your accumulated fees are transferred to your wallet in a single transaction.

Response

{
  "success": true,
  "data": {
    "tokenAddress": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
    "signature": "5UfDuX7nPqR3kLm8vYz...",
    "slot": 234567890,
    "latency": 520,
    "claimer": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
    "amountClaimed": 0.125,
    "sharePercent": 50
  }
}

Errors

{
  "success": false,
  "error": {
    "code": "NOT_RECIPIENT",
    "message": "Wallet is not a fee recipient for this token"
  }
}
CodeMessageCause
INVALID_TOKENInvalid token addressToken address is not a valid Solana address
INVALID_WALLETInvalid claimer private keyPrivate key is invalid
NOT_RECIPIENTWallet is not a fee recipient for this tokenWallet is not in the fee recipients list
RATE_LIMITRate limit exceededToo many requests — see Rate Limits
INTERNAL_ERRORInternal server errorRetry or contact support

Notes

No admin privileges required. Any fee recipient can claim their own share at any time.
  • Claiming is free — you only pay the standard Solana transaction fee
  • You can claim as often as you want; unclaimed fees continue to accumulate

What’s Next?

Create Token

Deploy a new token on PumpFun

Update Fee Shares

Configure fee recipients and percentages

Transfer Authority

Transfer token update authority

Revoke Authority

Permanently revoke update authority