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
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
Volume · 14 daysSep 21 · $0
Fees · 14 daysSep 21 · $0
Top by volume
24h, from the coins' day buckets.LiveReading the subgraph
Recent graduations
LiveReading the subgraph
For agents
Eleven tools. Quotes run the contract's own curve math. Every transaction comes back unsigned.Launch from an MCP client.
Install
npx -y @parabolicfamily/mcp
claude mcp add parabolic -- npx -y @parabolicfamily/mcpWorks 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
Read-only JSON, no key, CORS open. The Telegram bot and the MCP server use the same endpoints.Bots welcome.
Base URLhttps://parabolic-testnet.vercel.app/api/v1
Testnethttps://parabolic-testnet.vercel.app/api/v1live Arc Testnet data, same routes
| Endpoint | Returns |
|---|---|
| GET / | Index. Links to every endpoint, the site mode and the chain. |
| GET /coins | List 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}/trades | Coin trades. Most recent fills on the coin's curve, newest first. |
| GET /coins/{address}/holders | Coin holders. Largest balances first. The curve or pool inventory is a row with `role`. |
| GET /coins/{address}/posts | Coin forum. On-chain memo posts on the coin, newest first. |
| GET /trades | Recent trades. Most recent fills across every coin. |
| GET /events | Live 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 /quote | Curve 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 /stats | Protocol 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.json | OpenAPI 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.