Get a token deployer's on-chain activity feed
Trades Data
Get Token Dev History
Merged, chronological feed of a token deployer’s on-chain activity — creator fee claims, swaps on the queried token, and transfers to/from the deployer.
GET
Get a token deployer's on-chain activity feed
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.
Query Details
This endpoint returns a polymorphic, chronological feed of a token deployer’s on-chain activity. Each row is one of threetypes:
type | Meaning |
|---|---|
feeClaim | The deployer drained their accumulated trading fees from a protocol vault. Supported protocols: PumpFun bonding curve, PumpSwap AMM, and Meteora DBC — which is the backbone of Bags, Moonshot, Believe, Subs.fun, Cults.fun, Time.fun, and most Solana launchpads. |
swap | The deployer executed a swap on a pool that contains the queried token. side is buy if the deployer ended up with MORE of the queried token, sell otherwise. |
transfer | A direct transfer of the queried token to (direction: "in") or from (direction: "out") the deployer. |
| Parameter | Required | Description |
|---|---|---|
blockchain | Yes | Blockchain identifier (e.g., solana, base, ethereum). |
token | Yes | Token mint / contract address. |
type | No | Filter to a single entry type: feeClaim, swap, or transfer. |
limit | No | Page size. 1–200, default 50. |
offset | No | Pagination offset, default 0. |
For PumpFun and PumpSwap, the per-creator vault is shared across all of the deployer’s coins — a
feeClaim row under those protocols reflects the same on-chain claim event, but the amount may include fees from OTHER coins by the same creator. Rows from meteoradbc carry an exact tokenAddress and poolAddress and attribute 1:1 to a specific coin.Step-by-Step Tutorial
Response Overview
Eachdata[i] is discriminated on the type field. Common fields across all variants:
- type:
"feeClaim" | "swap" | "transfer"— the discriminator. - blockchain: Friendly blockchain name (e.g.
"solana"). - date: Event timestamp in milliseconds.
- transactionHash: On-chain transaction hash / signature.
feeClaim additional fields
- protocol:
"pumpfun" | "pumpswap" | "meteoradbc". - blockHeight: Block / slot number, or
null. - instructionIndex: Stable index of the claim instruction within the transaction.
- creatorAddress: Address that received the claimed fees (= the deployer).
- quoteAddress: Mint of the asset the claim is denominated in (wSOL, USDC, …).
- tokenAddress: Source coin mint for protocols with per-pool vaults (Meteora DBC).
nullfor per-creator vaults (PumpFun, PumpSwap). - poolAddress: Source pool address if available;
nullfor per-creator vaults. - amountRaw: Amount claimed in base units of
quoteAddress. - amountUSD: USD value (0 until enrichment lands).
swap additional fields
- side:
"buy"(deployer received the queried token) or"sell". - poolAddress: The pool the swap went through.
- baseTokenAddress / quoteTokenAddress: token0 / token1 of the pool. Not re-oriented to the queried token — compare addresses to know which side is which.
- baseTokenAmount / baseTokenAmountRaw / quoteTokenAmount / quoteTokenAmountRaw: amounts on each leg.
- amountUSD: USD value of the swap.
- swapSenderAddress: On-chain swap sender. Often a router (Jupiter, TG bots) when the deployer trades through an aggregator.
transfer additional fields
- direction:
"in"(deployer received) or"out"(deployer sent). - counterpartyAddress: The other side of the transfer.
- tokenAddress: Mint of the transferred token (= the queried token).
- amountRaw / amountUSD: transferred amount.
- data: array of polymorphic entries as described above.
- deployer: the queried token’s recorded deployer address, or
nullif unknown. - pagination:
{ offset, limit, count, hasMore }.
Usage Examples
Full feed for a Solana meme coin (GET):Sample Response
Error Responses
404 — Token not found:Use Cases
- Rug & dump detection: see if the deployer has been selling or transferring the token out.
- Trust scoring: quantify fee extraction (claim frequency & amount) across all supported launchpads — Bags, Moonshot, Believe, PumpFun, etc.
- Dev reputation: track a creator’s full activity on their coin across time in one feed.
- Pre-trade due diligence: check for recent unusual deployer activity before entering a position.
Query Parameters
Blockchain chain ID (e.g., "solana:solana")
Token mint address
Offset for pagination (default: 0)
Required range:
x >= 0Page size, max 200 (default: 50)
Required range:
1 <= x <= 200Filter to a single entry type: feeClaim, swap, or transfer
Available options:
feeClaim, swap, transfer Available options:
pumpfun, pumpswap, meteoradbc, clanker