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.Documentation Index
Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
Use this file to discover all available pages before exploring further.
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.- Supported: 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.
swap— the deployer executed a swap on a pool that contains the queried token. Thesidefield tells you if they bought or sold from their perspective.transfer— a direct token transfer to or from the deployer, withdirection: "in"or"out".
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.
When to use Token Dev History
- Rug & dump detection — detect fresh
transferout-rows from the deployer while their coin is trading. - Fee extraction scoring — sum
feeClaim.amountRawto 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.
Walkthrough
1. Prepare your query
| Parameter | Required | Description |
|---|---|---|
blockchain | Yes | Blockchain identifier (solana, base, ethereum, …). |
token | Yes | Token mint / contract address. |
type | No | Filter to one variant: feeClaim, swap, or transfer. |
limit | No | 1–200, default 50. |
offset | No | Pagination offset, default 0. |
2. Call the endpoint
Full feed (all three types interleaved by date DESC):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. AfeeClaim 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).
Related endpoints
- Token Trades — all trades on a token, not just the deployer’s.
- Wallet Trades — trades for an arbitrary wallet.
- Wallet Deployer — all tokens the deployer created.