ArrowPad.fun

For builders & bots

Public API

Free JSON API over everything launched on ArrowPad — no key, no signup, open CORS. All responses are application/json. Build trading bots, dashboards, or aggregators on Robinhood Chain; everything mirrors public on-chain state, so you can always verify against the contracts directly.

GET/api/tokens

Every token launched on ArrowPad, newest first — name, symbol, metadata (image, socials), price, market cap, liquidity (ETH + USD), pool, creator, timestamps.

curl -s https://arrowpad.fun/api/tokens
GET/api/tokens/latest

Just the newest launch — poll this instead of the full list to catch fresh tokens quickly (refreshes ~5s). For millisecond-grade sniping, watch the factory's TokenCreated event on-chain (see below).

curl -s https://arrowpad.fun/api/tokens/latest
GET/api/tokens/{address}

One token's full record — same shape as a list entry. 400 for a malformed address, 404 if it wasn't launched here.

curl -s https://arrowpad.fun/api/tokens/0x073D75e385E8319f4e10C3C64277AC29F9Ee7Bc0
GET/api/trades/{address}?limit=50

Recent swaps for a token (last 24h, newest first, limit ≤ 200): buy/sell, ETH + token amounts, execution price, tx hash, estimated timestamp.

curl -s 'https://arrowpad.fun/api/trades/0x073D75e385E8319f4e10C3C64277AC29F9Ee7Bc0?limit=20'

Freshness & fair use

  • Prices/market caps refresh ~30s, trades ~15s, token metadata is immutable. Responses are edge-cached — polling every few seconds is fine and cheap.
  • No API key, no rate limit today. Be reasonable; abuse gets blocked.
  • Amounts suffixed Eth are ETH; Usd uses the returned ethUsd rate. Trade timestamps are estimated from block rate (±seconds).
  • Token metadata (name, description, links, image URL) is creator-supplied and returned as-is. If you render it in a UI, escape it like any untrusted input.
  • Need another endpoint? Ask via the support bot in the footer.

Trading bots: read the chain directly

For latency-critical work (sniping new launches, market making), skip HTTP and subscribe to on-chain events yourself — everything is public Uniswap V3 infrastructure:

Chain ID4663
RPChttps://rpc.mainnet.chain.robinhood.com
ArrowPadFactory0x69225A43B20B824F4027B201731d9a21368Bf6Bc
WETH0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73
SwapRouter020xCaf681a66D020601342297493863E78C959E5cb2
QuoterV20x33e885eD0Ec9bF04EcfB19341582aADCb4c8A9E7
Pool fee tier1% (10000)

New launches: watch the factory’s TokenCreatedevent. Trades: each token pool’s Swap event. Verified factory source ↗