Analytics

The numbers, in dollars.

Read from the indexer and the contracts. Each figure names the field and the contract it comes from. Nothing is estimated.
refreshed 0s ago · every 15sLive
Live from Arc TestnetSubgraph totals and UTC day buckets. The launch fee and escrow balance are read from the chain.chain 5042002 · as of 2026-09-21 19:09:17 UTC
Launches5today 07d 2
Graduation rate40.0%graduated 27d 0
Volume · all time$14.08today $07d $5.80
Fees · all time$0.47today $07d $0.11
Creator payouts$0.36credited 50% of feesunclaimed in escrow $0
Buyback vault< $0.01funded 20% of feestokens locked 23,562
Protocol revenue$5.10fee share 30% $0.10launch fees × $1 $5
Trades17today 07d 3

Where the fee goes

1% on every curve and pool trade. The snipe tax is booked as fee revenue. A creator tax goes entirely to the creator.
Creator · 50%$0.30Claimable from the fee escrow whenever the creator likes.
Protocol · 30%$0.10The referrer named in the memo is paid 10% of the whole fee, 0.10% of the buy, out of this share.
Buyback · 20%$0.07Buys the coin and locks it on a five-year vest that releases 70% to the creator and 30% to Parabolic. The vault never sells.

Last 14 days

UTC day buckets from DailyStat.
Launches · 14 daysSep 21 · 0
Sep 8: 0Sep 9: 0Sep 10: 0Sep 11: 0Sep 12: 22Sep 13: 1Sep 14: 0Sep 15: 2Sep 16: 0Sep 17: 0Sep 18: 0Sep 19: 0Sep 20: 0Sep 21: 0Sep 9Sep 13Sep 17Sep 21
Volume · 14 daysSep 21 · $0
Sep 8: $0Sep 9: $0Sep 10: $0Sep 11: $0Sep 12: $4.38Sep 13: $3.90Sep 14: $0Sep 15: $5.80$5.80Sep 16: $0Sep 17: $0Sep 18: $0Sep 19: $0Sep 20: $0Sep 21: $0Sep 9Sep 13Sep 17Sep 21
Fees · 14 daysSep 21 · $0
Sep 8: $0Sep 9: $0Sep 10: $0Sep 11: $0Sep 12: $0.18$0.18Sep 13: $0.18Sep 14: $0Sep 15: $0.11Sep 16: $0Sep 17: $0Sep 18: $0Sep 19: $0Sep 20: $0Sep 21: $0Sep 9Sep 13Sep 17Sep 21

Top by volume

24h, from the coins' day buckets.
LiveReading the subgraph

Recent graduations

LiveReading the subgraph
For agents

Launch from an MCP client.

Eleven tools. Quotes run the contract's own curve math. Every transaction comes back unsigned.
Install
npx -y @parabolicfamily/mcp
claude mcp add parabolic -- npx -y @parabolicfamily/mcp
Works with no configuration: the deployed addresses ship with the package. Node 22 or newer.
What it does
list_coins, get_coin, protocol_stats, docs to read the protocol.quote_buy and quote_sell price a trade on live reserves, with the fee, creator tax and snipe tax split out.build_launch_tx, build_buy_tx, build_sell_tx return { to, data, value, chainId } for your own wallet to sign.agent_status and build_register_agent_tx read and register an ERC-8004 identity on any Arc chain with a published registry, which today is Arc Testnet.It never holds keys, never signs and never broadcasts, and takes no private key or seed phrase as input.On npm: @parabolicfamily/mcp.
Public API

Bots welcome.

Read-only JSON, no key, CORS open. The Telegram bot and the MCP server use the same endpoints.
Base URLhttps://parabolic-testnet.vercel.app/api/v1
Testnethttps://parabolic-testnet.vercel.app/api/v1live Arc Testnet data, same routes
EndpointReturns
GET /Index. Links to every endpoint, the site mode and the chain.
GET /coinsList coins. Coins sorted and filtered like the Explore board. `trending` = 24h volume, `new` = newest first, `graduating` = closest to the $8,000 threshold, `mcap` = market cap, `rising` = what is about to move: (buys ÷ 10 + holders gained) × log2(1 + buy volume in dollars) over the last 10 minutes of buys, climbing coins only, so twenty wallets putting in $1 each outrank one wallet putting in $400. With `sort=rising` each coin that had a buy in the window carries those figures in `rising`.
GET /coins/{address}One coin. A coin by token address.
GET /coins/{address}/tradesCoin trades. Most recent fills on the coin's curve, newest first.
GET /coins/{address}/holdersCoin holders. Largest balances first. The curve or pool inventory is a row with `role`.
GET /coins/{address}/postsCoin forum. On-chain memo posts on the coin, newest first.
GET /tradesRecent trades. Most recent fills across every coin.
GET /eventsLive events. Fills, launches and graduations across every coin as one list, newest first; `kind` is buy, sell, launch or graduation. Poll with `since` set to the newest timestamp you hold: the window is inclusive and ids are unique, so merging by id never duplicates a row. The board's live feed reads this every 2 s. Sample and pre-launch hosts answer an empty list.
GET /quoteCurve quote. Curve quote from the contract's own math: fee legs, snipe tax if the launch window is open, price impact and whether the buy crosses the graduation threshold. Live coins are read on chain. Sample coins use the preset curve.
GET /statsProtocol stats. Totals, today and last-7-day figures, the fee split and a 14-day daily series. The same numbers as the /analytics page.
GET /openapi.jsonOpenAPI document. This description, OpenAPI 3.1.
Example
curl -s 'https://parabolic-testnet.vercel.app/api/v1/coins?sort=trending&status=climbing&limit=3' \
  | jq '.coins[] | {ticker, marketCap, toGraduation, sample}'

curl -s 'https://parabolic-testnet.vercel.app/api/v1/quote?coin=<token>&side=buy&amount=25' \
  | jq '.quote | {tokensOut: .tokensOut.value, fees: .fees.totalBps, crossing}'
Schema: /api/v1/openapi.json (OpenAPI 3.1).Responses are cached 3 s at the edge and served stale for up to 10 s while revalidating. No rate limit beyond the platform's. Be reasonable and name your bot in the User-Agent.Every payload carries meta.mode: live is indexed from Arc, sample is the demo set (each coin has sample: true), prelaunch means this host serves no deployment yet, whatever exists on chain. Dollars are JSON numbers, timestamps unix seconds, unknowns null.The Telegram bot @parabolicfamily_bot reads this API.