Skip to main content
Alpha — This endpoint is in early access. Response shape, field names, and filter semantics may change without notice. swap and transfer rows are chain-agnostic — they work on any chain Mobula indexes (Solana and every supported EVM chain). feeClaim coverage is launchpad-specific: all major Solana launchpads (PumpFun, PumpSwap, Meteora DBC) plus Clanker on EVM, with other EVM launchpads (e.g. Bankr) still rolling out.
The Token Dev History endpoint returns a single, chronological feed of a token deployer’s on-chain activity for a specific coin — so you can see what the dev is doing in one place instead of stitching together fee-claim events, DEX swaps, and wallet transfers across three different datasets. It’s the same feed you’d build to power a “dev activity” panel, a rug-detection alert, or a trust score.

What this endpoint does

One call returns a merged, paginated stream of three polymorphic event types, all attributable to the token’s deployer:
  • feeClaim — the deployer drained their accumulated trading fees from a protocol vault.
    • Solana: PumpFun bonding curve, PumpSwap AMM, and Meteora DBC — which is the underlying program for Bags, Moonshot, Believe, Subs.fun, Cults.fun, Time.fun, and most Solana launchpads. You don’t have to query each launchpad separately.
    • EVM: Clanker creator-fee claims (primarily Base). Other EVM launchpads (e.g. Bankr) are still rolling out.
  • swap — the deployer executed a swap on a pool that contains the queried token. The side field tells you if they bought or sold from their perspective.
  • transfer — a direct token transfer to or from the deployer, with direction: "in" or "out".
Each row has a type discriminator — client code switches on that to render each variant.

What you’ll need

Note: all Mobula endpoints require an API key. Get a free API key: Here You’ll provide two things:
  • blockchain — e.g. solana, base, ethereum.
  • token — the token’s mint / contract address.
The endpoint reads the deployer from Mobula’s token registry automatically; you don’t need to know it yourself.

When to use Token Dev History

  • Rug & dump detection — detect fresh transfer out-rows from the deployer while their coin is trading.
  • Fee extraction scoring — sum feeClaim.amountRaw to quantify how aggressively a dev is cashing out.
  • Cross-launchpad dev views — a Bags token graduates to PumpSwap? The same endpoint keeps following the deployer.
  • Pre-trade due diligence — show “last 10 dev actions” before a buy.
If you want the deployer’s other tokens, use the Wallet Deployer endpoint. If you want wallet-level trade history for any address (not just the deployer), use Wallet Trades.

Walkthrough

1. Prepare your query

2. Call the endpoint

Full feed (all three types interleaved by date DESC):
Only fee claims (useful for a “dev earnings” card):
Next page:

3. Discriminate on type in your client


Attribution caveats

For PumpFun bonding curve and PumpSwap AMM, the creator fee vault is derived from the creator’s address alone and is shared across all their coins. A feeClaim row under those protocols reflects one real on-chain claim, but the amount may include fees accumulated from other coins by the same deployer. If you need exact per-coin attribution, rely on meteoradbc rows, which carry tokenAddress and poolAddress precisely (per-pool vaults).