
{"id":222408,"date":"2026-09-03T16:23:44","date_gmt":"2026-09-03T16:23:44","guid":{"rendered":"https:\/\/mycryptomania.com\/?p=222408"},"modified":"2026-09-03T16:23:44","modified_gmt":"2026-09-03T16:23:44","slug":"pump-fun-api-how-to-track-bonding-curves-graduations-and-pumpswap-on-chain","status":"publish","type":"post","link":"https:\/\/mycryptomania.com\/?p=222408","title":{"rendered":"Pump.fun API: How to Track Bonding Curves, Graduations and PumpSwap On-Chain"},"content":{"rendered":"<h4>The Pump.fun API end to end: detect launches, read bonding curve progress, catch graduations to PumpSwap. Measured graduation rate: 2.7%, median two\u00a0minutes.<\/h4>\n<p>Pump.fun launched 282,428 new tokens in the seven days to 2 September 2026. That works out to one new token every two seconds for seven straight days, and it was not an unusual\u00a0week.<\/p>\n<p>Almost none of them matter. Of the tokens that launched on 13 August, 2.69% ever reached a PumpSwap pool. The other 97.3% died on the curve. Of the ones that did graduate, the median took <strong>two minutes<\/strong>, which tells you most of what you need to know about the latency budget for anything you build\u00a0here.<\/p>\n<p>If you are building a trading terminal, a sniper, a screener or a research dashboard on Solana, this is the feed you have to handle. In this article, we cover what Pump.fun does at the program level, then the Pump.fun API queries that turn it into structured data you can\u00a0use.<\/p>\n<p>Every figure below was measured on 3 September 2026 against live Solana data using Bitquery\u2019s <a href=\"https:\/\/docs.bitquery.io\/docs\/examples\/Solana\/Pump-Fun-API\/\">Pump.fun API<\/a>. Where a number is a proxy rather than a direct measurement, I say\u00a0so.<\/p>\n<h4>How the Pump.fun bonding curve\u00a0works<\/h4>\n<p>Pump.fun is a bonding-curve launchpad, and it is the design everything else copied. Unlike its EVM imitators, it does not deploy a contract per token. One Solana program serves every token on the platform.<\/p>\n<p>A token moves through four\u00a0stages.<\/p>\n<p><strong>Launch.<\/strong> A creator calls create or create_v2 on the Pump.fun program at 6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P. The program mints a fixed supply of one billion, opens a bonding curve, and writes the name, symbol, metadata URI and creator into the instruction. Bitquery decodes that program under the name pump, so you can filter on Program: { Name: { is: &#8220;pump&#8221; } } instead of memorising the\u00a0address.<\/p>\n<p><strong>Curve trading.<\/strong> Buys and sells go against the curve rather than a pool. Price rises as the curve\u2019s base balance falls. There is no per-token curve account to chase, because the mint address is what separates one token\u2019s trades from another\u2019s.<\/p>\n<p><strong>Graduation.<\/strong> When the curve\u2019s base balance reaches 206900000, the token has completed the curve. That constant is the cleanest tripwire in the whole system: one equality filter on DEXPools, no event decoding, no market-cap arithmetic.<\/p>\n<p><strong>Open-market trading.<\/strong> A create_pool instruction on the PumpSwap AMM at pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA opens the real pool, and trading continues there.<\/p>\n<p>One detail catches people on the first pass. The curve is not SOL-only. Over the measured week, 27,207,356 curve fills were quoted in SOL and 883,830 in USDC, which is 3.1% of trades and 2.4% of volume. Small enough to miss by accident, large enough to skew a USD column if you hardcode SOL as\u00a0quote.<\/p>\n<h4>What a million Pump.fun launches looks\u00a0like<\/h4>\n<p>Counting tokens whose first curve trade fell inside the\u00a0window:<\/p>\n<p>5 August to 2 September 2026, 29 full days: <strong>1,109,779 tokens<\/strong>27 August to 2 September, seven days: <strong>282,428\u00a0tokens<\/strong>Daily range across the month: 30,663 at the low, 52,438 at the\u00a0highNew tokens per day on Pump.fun, 5 Aug\u200a\u2014\u200a2 Sep 2026. Source: Bitquery.<\/p>\n<p>Over that same week the bonding curve carried 28,091,186 trades from 515,432 distinct traders across 323,089 distinct tokens, on roughly $1.14B of quote-side volume. The average fill was $40.45 and the median was $10.13. A very long tail of very small\u00a0bets.<\/p>\n<h4>Pump.fun graduation rate: 2.7%, in a median of two\u00a0minutes<\/h4>\n<p>The graduation rate is the number most people get wrong, so it is worth measuring properly. Take a single day\u2019s launch cohort and follow it forward, instead of dividing today\u2019s graduations by today\u2019s launches. Four cohorts, each followed to 2 September:<\/p>\n<p>Launched 6 August: 35,183 tokens, 998 reached PumpSwap, <strong>2.84%<\/strong>Launched 13 August: 38,835 tokens, 1,045 reached PumpSwap, <strong>2.69%<\/strong>Launched 20 August: 40,934 tokens, 1,066 reached PumpSwap, <strong>2.60%<\/strong>Launched 26 August: 49,530 tokens, 1,535 reached PumpSwap, <strong>3.10%<\/strong><\/p>\n<p>Call it 2.7%, stable within half a percentage point across four independent cohorts.<\/p>\n<p>Share of each day\u2019s launch cohort that reached PumpSwap by 2 Sep 2026, against the naive same-week method. Source: Bitquery.<\/p>\n<p>The naive method gives you something very different. 34,576 new PumpSwap pools appeared during the week against 282,428 launches, which reads as a 12.2% graduation rate and is wrong by more than four\u00a0times.<\/p>\n<p>Speed is the other half of the picture. For the 13 August cohort\u2019s 1,045 graduates, 1,038 of which have a cleanly ordered pair of timestamps, the gap between first curve trade and first pool\u00a0trade:<\/p>\n<p>25th percentile: under one\u00a0minuteMedian: <strong>two\u00a0minutes<\/strong>75th percentile: 13\u00a0minutes901 of 1,038, or 86.8%, inside the first\u00a0hour992 of 1,038, or 95.6%, inside the first\u00a0day<\/p>\n<p>Launch-to-graduation time, 13 Aug 2026 cohort, n=1,038. Source: Bitquery.<\/p>\n<p>There is no slow burn. A token either clears the curve almost immediately or it never does. Anything polling on a one-minute cron has already missed the median graduation, which is why the queries later in this article are written as subscriptions rather than as scheduled requests.<\/p>\n<h4>47% of PumpSwap\u2019s volume is 940 mints borrowing ten\u00a0names<\/h4>\n<p>This is where the graduation pipeline stops explaining PumpSwap.<\/p>\n<p>Of the 34,576 tokens that got their first PumpSwap trade during the week, only 8,745, or <strong>25.3%<\/strong>, had ever traded on a Pump.fun bonding curve. Three quarters of PumpSwap\u2019s new listings did not graduate onto it. Somebody opened a pool for them directly.<\/p>\n<p>Widen that to all PumpSwap activity for the week and the split gets sharper. Curve-origin tokens carry 42.1% of the trades but only <strong>7.1% of the\u00a0volume<\/strong>.<\/p>\n<p>So where is the volume? Group the week\u2019s PumpSwap trades by token symbol. Each line below is one symbol, the number of separate mints trading under it, that symbol\u2019s total volume, and the median fill\u00a0size:<\/p>\n<p><strong>AAPL<\/strong>\u200a\u2014\u200a180 mints, $3.53B, median fill\u00a0$982<strong>Anthropic<\/strong>\u200a\u2014\u200a212 mints, $3.47B, median fill\u00a0$1,459<strong>NVDA<\/strong>\u200a\u2014\u200a41 mints, $2.24B, median fill\u00a0$1,104<strong>OPENAI<\/strong>\u200a\u2014\u200a41 mints, $1.84B, median fill\u00a0$1,124<strong>HOOD<\/strong>\u200a\u2014\u200a104 mints, $1.80B, median fill\u00a0$961<strong>GOOGL<\/strong>\u200a\u2014\u200a92 mints, $1.75B, median fill\u00a0$980<strong>META<\/strong>\u200a\u2014\u200a64 mints, $1.73B, median fill\u00a0$960<strong>MSFT<\/strong>\u200a\u2014\u200a63 mints, $1.30B, median fill\u00a0$894<strong>ROCKSTAR<\/strong>\u200a\u2014\u200a124 mints, $1.23B, median fill\u00a0$823<strong>UMIA<\/strong>\u200a\u2014\u200a19 mints, $1.16B, median fill\u00a0$1,072<\/p>\n<p>Ten symbols. <strong>940 distinct mints. $20.05B of $42.44B<\/strong> total PumpSwap volume, or 47.2%. Essentially none of it came off a bonding curve: 37 of those 940 mints ever saw a curve trade, and they carry 0.0% of the volume once you round to a single\u00a0decimal.<\/p>\n<p>PumpSwap volume by token symbol, 27 Aug\u200a\u2014\u200a2 Sep 2026. Source: Bitquery.<\/p>\n<p>To be explicit, because the tickers invite the wrong assumption: these are Solana tokens that use those names and symbols. They are not issued by, affiliated with, or endorsed by Apple, Anthropic, Nvidia, OpenAI, Robinhood, Alphabet, Meta, Microsoft or Take-Two, and they are not equity in any of\u00a0them.<\/p>\n<p>The pattern inside one of these pools is worth looking at directly. Taking the largest UMIA mint for the week: 223,927 buys worth $184.23M against 169,650 sells worth $183.55M, balanced to within 0.4%. 4,746 addresses bought and 1,605 sold, averaging 106 sells each. Median fill was $1,044 on the buy side and $1,141 on the\u00a0sell.<\/p>\n<p>Two-sided flow balanced to a fraction of a percent, fill sizes clustered in a narrow band around $1,000, and the same ten names re-minted 940 times. I am not going to characterise the intent from a query. What I will say is that the shape of it does not look like price discovery, and a screener that ranks on volume will put all of it on the front\u00a0page.<\/p>\n<h4>One wallet made 17% of every bonding-curve trade<\/h4>\n<p>Back on the curve, concentration is worse than the launch counts\u00a0suggest.<\/p>\n<p>Over the week, the address Gygj9QQby4j2jryqyqBHvLP7ctv2SaANgh4sCb69BUpA made 4,829,570 bonding-curve trades. That is <strong>17.19% of every fill on the entire launchpad<\/strong>, from one wallet, at roughly eight trades per second sustained for seven\u00a0days.<\/p>\n<p>Its shape is unambiguous: 2,412,205 buys and 2,417,365 sells, $26.71M bought against $26.61M sold, median fill <strong>$2.40<\/strong>, spread across 64,979 distinct tokens. It produces 17% of the trade count and 4.7% of the\u00a0volume.<\/p>\n<p>The top ten wallets together made 22.22% of all curve trades, and the top hundred made 29.19%. At the other end of the distribution, 75,236 addresses made exactly one trade all\u00a0week.<\/p>\n<p>Share of Pump.fun bonding-curve fills by wallet rank, 27 Aug\u200a\u2014\u200a2 Sep 2026. Source: Bitquery.<\/p>\n<p>The consequence for anything you build: <strong>do not rank on trade count.<\/strong> The two highest-volume curve tokens of the week, LAKEUSA at $3.78M and BLAJUG at $999.7k, had 54 and 28 unique traders respectively. The third, fone at $420.1k, had 1,683. A trending list sorted by volume or fills will surface the first two and bury the third. Sort on unique traders, or carry both and let the gap between them be the\u00a0signal.<\/p>\n<h4>Querying Pump.fun data with the\u00a0API<\/h4>\n<p>Bitquery serves Solana as GraphQL at https:\/\/streaming.bitquery.io\/graphql. Three cubes matter\u00a0here.<\/p>\n<p>Solana.Instructions and Solana.TokenSupplyUpdates give you launches, creators and metadata. Solana.DEXTrades, DEXTradeByTokens and DEXPools give you curve fills, pool state and bonding curve progress. Trading.Trades gives you normalised trades with USD price, market cap and supply on every row, with curve trades under ProtocolFamily: &#8220;Pumpfun&#8221; and graduated pools under &#8220;Pumpswap&#8221;.<\/p>\n<p>Grab a free key from the Bitquery IDE and send it as a bearer\u00a0token.<\/p>\n<h4>How to detect every new Pump.fun\u00a0launch<\/h4>\n<p>Every launch is a create or create_v2 call on the Pump.fun\u00a0program:<\/p>\n<p>subscription {<br \/>  Solana {<br \/>    TokenSupplyUpdates(<br \/>      where: {<br \/>        Instruction: {<br \/>          Program: {<br \/>            Address: { is: &#8220;6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P&#8221; }<br \/>            Method: { in: [&#8220;create&#8221;, &#8220;create_v2&#8221;] }<br \/>          }<br \/>        }<br \/>      }<br \/>    ) {<br \/>      Block { Time }<br \/>      Transaction { Signer }<br \/>      TokenSupplyUpdate {<br \/>        Amount<br \/>        PostBalance<br \/>        Currency {<br \/>          Name<br \/>          Symbol<br \/>          MintAddress<br \/>          Decimals<br \/>          Uri<br \/>          UpdateAuthority<br \/>        }<br \/>      }<br \/>    }<br \/>  }<br \/>}<\/p>\n<p>Transaction.Signer is the creator. Currency.Uri points at the off-chain metadata, and MintAddress is the key every other query joins on. Name, symbol and decimals arrive in the same row, so there is no separate metadata lookup in the hot\u00a0path.<\/p>\n<h4>How to get a Pump.fun token\u2019s creator and creation\u00a0time<\/h4>\n<p>Working backwards from a mint, instead of forwards from the firehose:<\/p>\n<p>query {<br \/>  Solana(network: solana) {<br \/>    Instructions(<br \/>      where: {<br \/>        Instruction: {<br \/>          Accounts: { includes: { Address: { is: &#8220;MINT_ADDRESS&#8221; } } }<br \/>          Program: {<br \/>            Name: { is: &#8220;pump&#8221; }<br \/>            Method: { in: [&#8220;create&#8221;, &#8220;create_v2&#8221;] }<br \/>          }<br \/>        }<br \/>      }<br \/>    ) {<br \/>      Block { Time }<br \/>      Transaction { Signer Signature }<br \/>      Instruction { Accounts { Address } }<br \/>    }<br \/>  }<br \/>}<\/p>\n<p>One row, and it is the token\u2019s birth certificate. Swap the mint filter for a signer filter and you get every token that developer has ever launched, which given the concentration above is usually the first thing worth checking about a new\u00a0launch.<\/p>\n<h4>How to stream Pump.fun bonding curve\u00a0trades<\/h4>\n<p>subscription {<br \/>  Trading {<br \/>    Trades(<br \/>      where: { Pair: { Market: { ProtocolFamily: { is: &#8220;Pumpfun&#8221; } } } }<br \/>    ) {<br \/>      Block { Time }<br \/>      Side<br \/>      Price<br \/>      PriceInUsd<br \/>      Amounts { Base Quote }<br \/>      AmountsInUsd { Base Quote }<br \/>      Trader { Address }<br \/>      Supply { MarketCap TotalSupply }<br \/>      Pair {<br \/>        Token { Address Symbol }<br \/>        QuoteToken { Symbol }<br \/>        Market { Address Program }<br \/>      }<br \/>    }<br \/>  }<br \/>}<\/p>\n<p>That is every bonding-curve fill on Solana, USD-priced, with market cap attached, all 28 million a week of them. Add Pair: { Token: { Address: { is: &#8220;MINT&#8221; } } } to watch a single\u00a0token.<\/p>\n<p>Take that mint from the token\u2019s own create instruction rather than copying one out of an article. Most curves go quiet within hours, so a hardcoded address returns an empty result more often than\u00a0not.<\/p>\n<h4>How to get Pump.fun bonding curve\u00a0progress<\/h4>\n<p>To see how close a token is to graduating, read the pool state instead of summing\u00a0trades:<\/p>\n<p>query ($pairAddress: String) {<br \/>  Solana {<br \/>    DEXPools(<br \/>      where: {<br \/>        Pool: { Market: { MarketAddress: { is: $pairAddress } } }<br \/>        Transaction: { Result: { Success: true } }<br \/>      }<br \/>      limit: { count: 1 }<br \/>      orderBy: { descending: Block_Time }<br \/>    ) {<br \/>      Pool {<br \/>        Base { Balance: PostAmount PostAmountInUSD }<br \/>        Quote { PostAmount PostAmountInUSD }<br \/>        Market {<br \/>          BaseCurrency { Name Symbol }<br \/>          QuoteCurrency { Name Symbol }<br \/>        }<br \/>      }<br \/>    }<br \/>  }<br \/>}<\/p>\n<p>Base.PostAmount counting down toward 206900000 is the progress bar. There is no percentage field to look for, and you do not need\u00a0one.<\/p>\n<h4>How to catch a Pump.fun graduation to\u00a0PumpSwap<\/h4>\n<p>Two signals, and you want both. The last curve trade before the\u00a0flip:<\/p>\n<p>{<br \/>  Solana {<br \/>    DEXPools(<br \/>      where: {<br \/>        Pool: {<br \/>          Dex: { ProtocolName: { is: &#8220;pump&#8221; } }<br \/>          Base: { PostAmount: { eq: &#8220;206900000&#8221; } }<br \/>        }<br \/>        Transaction: { Result: { Success: true } }<br \/>      }<br \/>      orderBy: { descending: Block_Time }<br \/>    ) {<br \/>      Transaction { Signer Signature }<br \/>      Pool {<br \/>        Base { ChangeAmount PostAmount }<br \/>        Quote { PostAmount PostAmountInUSD PriceInUSD }<br \/>        Market { BaseCurrency { MintAddress Symbol } MarketAddress }<br \/>      }<br \/>    }<br \/>  }<br \/>}<\/p>\n<p>And the pool opening on PumpSwap, which is the confirmation:<\/p>\n<p>subscription {<br \/>  Solana {<br \/>    Instructions(<br \/>      where: {<br \/>        Instruction: {<br \/>          Program: {<br \/>            Address: { is: &#8220;pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA&#8221; }<br \/>            Method: { is: &#8220;create_pool&#8221; }<br \/>          }<br \/>        }<br \/>      }<br \/>    ) {<br \/>      Block { Time }<br \/>      Transaction { Signer Signature }<br \/>      Instruction {<br \/>        Accounts { Address Token { Mint Owner } }<br \/>        Program { Method AccountNames Json }<br \/>      }<br \/>    }<br \/>  }<br \/>}<\/p>\n<p>Given a two-minute median, run the second one as a subscription and treat the first as reconciliation.<\/p>\n<h4>How to stream it live over WebSocket<\/h4>\n<p>Any query above becomes a subscription. Change query to subscription, drop limit and orderBy, and connect to wss:\/\/streaming.bitquery.io\/graphql?token=YOUR_TOKEN. Three subscriptions, covering launches, curve trades and create_pool, give you the whole launchpad in real time. Aggregates such as sum, count and OHLC buckets are query-only, so run those on a schedule and keep the streams\u00a0raw.<\/p>\n<h4>Pump.fun API\u00a0FAQ<\/h4>\n<h4>What is the Pump.fun program\u00a0ID?<\/h4>\n<p>6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P on Solana mainnet. That single program handles creation and all bonding-curve trading for every Pump.fun token. The PumpSwap AMM that graduated tokens move to is a separate program at pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA.<\/p>\n<h4>What is the Pump.fun graduation market cap threshold?<\/h4>\n<p>There isn\u2019t one, and this is the single most common wrong assumption about the launchpad. The on-chain graduation condition is a token-balance constant: the curve\u2019s base balance reaching 206900000. It is denominated in tokens, not\u00a0dollars.<\/p>\n<p>That constant is easy to sanity-check from trade data, and worth doing once so you trust it. Supply is one billion, so completion means 793,100,000 tokens have been sold off the curve. Summing net base flow on the curve for tokens that graduated during the measured week gives a median of <strong>793.10M<\/strong> tokens, matching the constant\u00a0exactly.<\/p>\n<p>The USD market cap that corresponds to floats with the SOL price and with where the token\u2019s price sat when it completed. Measuring the last curve trade before graduation put the 10th percentile near $11k and the 90th near $101k, with a median around $38k\u200a\u2014\u200aa range too wide to be a threshold. Any article quoting you a single fixed dollar figure is quoting a conversion that was true on one day. Filter on the balance constant\u00a0instead.<\/p>\n<h4>Does Pump.fun still migrate to\u00a0Raydium?<\/h4>\n<p>No. Graduated Pump.fun tokens migrate to <strong>PumpSwap<\/strong>, Pump.fun\u2019s own AMM, and the migration shows up as a create_pool instruction on pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA. Plenty of guides still describe a Raydium migration, which was the older behaviour. If your indexer is watching Raydium pool creation for graduations, it has been silently missing all of\u00a0them.<\/p>\n<h4>What is PumpSwap?<\/h4>\n<p>The AMM Pump.fun runs for tokens that complete the bonding curve. As the numbers above show, it is no longer only a graduation venue: three quarters of the pools opened on it during the measured week were for tokens that never traded on a Pump.fun curve at all, and those tokens carry the overwhelming majority of its\u00a0volume.<\/p>\n<h4>What is Mayhem mode on Pump.fun?<\/h4>\n<p>A launch variant, and the useful part for anyone indexing is that it is detectable at creation without decoding anything exotic. A standard launch shows one transfer of 1,000,000,000,000,000 base units, which is one billion tokens at six decimals. A Mayhem-mode launch shows two. Count them and you have the flag, historically as well as live. The <a href=\"https:\/\/docs.bitquery.io\/docs\/examples\/Solana\/Pump-Fun-API\/\">Pump.fun API docs<\/a> have the\u00a0query.<\/p>\n<h4>Is there a free Pump.fun\u00a0API?<\/h4>\n<p>You can generate a free key in the Bitquery IDE and run every query in this article against it, within the free tier\u2019s limits. The docs page has the current tiers, and if you are choosing between providers rather than getting started, I compared them in <a href=\"https:\/\/bitquery.io\/blog\/best-pump-fun-api\">Best Pump.fun APIs in\u00a02026<\/a>.<\/p>\n<h4>Is Pump.fun on any other\u00a0chain?<\/h4>\n<p>Not as Pump.fun. The program is Solana-only and every address in this article is a Solana\u00a0address.<\/p>\n<p>The design has been copied widely, though, and a cross-chain screener needs each one handled separately because they share no event shape. <a href=\"https:\/\/docs.bitquery.io\/docs\/blockchain\/robinhood\/pons-api\/\">Pons<\/a> on Robinhood Chain is the closest analogue, an EVM rebuild on Uniswap v4 that deploys a curve contract per token and lets the creator choose the quote asset, including tokenised equities. pools.trade on the same chain has no bonding curve at all, and its tokens open as a Uniswap v4 pool from the first block. Comparing graduation rates across the three is the most interesting thing you can do with those feeds, and reusing Pump.fun\u2019s assumptions is the fastest way to publish a wrong\u00a0number.<\/p>\n<h4>Where to go\u00a0next<\/h4>\n<p>The full reference lives in the <a href=\"https:\/\/docs.bitquery.io\/docs\/examples\/Solana\/Pump-Fun-API\/\">Pump.fun API documentation<\/a> and the <a href=\"https:\/\/docs.bitquery.io\/docs\/examples\/Solana\/pump-swap-api\/\">PumpSwap API documentation<\/a>, which between them cover token creation, Mayhem-mode detection, OHLCV, first-100-buyers, dev holdings, top creators, market-cap filters, migration tracking and creator-fee transfers.<\/p>\n<p>At 40,000 launches a day and a two-minute median to graduation, polling stops being an option early. The instructions above are the entire surface area of the launchpad.<\/p>\n<p>All figures were measured on 3 September 2026 against Solana via Bitquery. The window is 27 August to 2 September 2026, seven full days, unless stated; the 29-day figure covers 5 August to 2 September.<\/p>\n<p><em>Disclosure: this post contains no affiliate or referral links. I work on data tooling at Bitquery, whose API produced the measurements above.<\/em><\/p>\n<p><a href=\"https:\/\/medium.com\/coinmonks\/pump-fun-api-how-to-track-bonding-curves-graduations-and-pumpswap-on-chain-879b689fbedb\">Pump.fun API: How to Track Bonding Curves, Graduations and PumpSwap On-Chain<\/a> was originally published in <a href=\"https:\/\/medium.com\/coinmonks\">Coinmonks<\/a> on Medium, where people are continuing the conversation by highlighting and responding to this story.<\/p>","protected":false},"excerpt":{"rendered":"<p>The Pump.fun API end to end: detect launches, read bonding curve progress, catch graduations to PumpSwap. Measured graduation rate: 2.7%, median two\u00a0minutes. Pump.fun launched 282,428 new tokens in the seven days to 2 September 2026. That works out to one new token every two seconds for seven straight days, and it was not an unusual\u00a0week. [&hellip;]<\/p>\n","protected":false},"author":0,"featured_media":222409,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-222408","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-interesting"],"_links":{"self":[{"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/posts\/222408"}],"collection":[{"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=222408"}],"version-history":[{"count":0,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/posts\/222408\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/media\/222409"}],"wp:attachment":[{"href":"https:\/\/mycryptomania.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=222408"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=222408"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=222408"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}