Zero1 self-indexes every launch, trade, and fee on the protocol. DexScreener and DeFiLlama don't cover chain 5042 yet — this API is the canonical source for Zero1 market data, and it's open. Base URL: https://zero1api-production.up.railway.app · Rate limit: 100 req/min/IP · openapi.json ↗
All responses are JSON; envelope shape is { data, updatedAt } (or paginated)
GET | /health | Liveness probe. |
GET | /api/v1/market/overview | Chain-wide stats: volume, fees, tokens, indexed block. |
GET | /api/v1/tokens?page&limit&sort&order | Paginated token list. sort: mcap | newest | volume | graduating. |
GET | /api/v1/tokens/:address | Single token summary incl. anti-snipe protection status. |
GET | /api/v1/tokens/:address/trades?limit | Recent trades (raw 6-dec USDC / 18-dec token amounts). |
GET | /api/v1/tokens/:address/candles?interval&from&to | OHLCV candles. interval: 1m | 5m | 1h. Unix-second buckets. |
GET | /api/v1/tokens/:address/holders?limit | Top holders with % of supply. |
GET | /api/v1/fees/summary | Protocol/treasury/creator/bridge fee totals + contract table. |
GET | /api/v1/bridge/config | CCTP V2 chain configs, fee recipient, mainnet-verification status. |
GET | /api/v1/openapi.json | Machine-readable OpenAPI 3.1 for all of the above. |
Token discovery: poll /api/v1/tokens?sort=newest — every launch appears within one indexed block (<1s on Arc). Each token's protection object exposes the live snipe-tax bps and taxEndsAt so bots can price the decay window (25% → 1% over 30 min) instead of getting surprised by it.
Charts: candles returns TradingView-compatible OHLCV (unix-second time). Trades include per-trade snipeTaxUsdc for accurate PnL.
Swaps route through the canonical Arc Uniswap V3 deployment: router 0x53bf6b0684ec7ef91e1387da3d1a1769bc5a6f77, quoter 0x7dfd4f31be6814d2906bde155c3e1b146eac1468, pool fee tier 10000 (1%). USDC is 0x3600000000000000000000000000000000000000 — 6-dec ERC-20 view of the 18-dec native gas token. One balance, two interfaces; never mix raw units.
market/overview mirrors the fields DeFiLlama adapters need (volume24hUsdc, fees24hUsdc, per-stream fee totals). indexedBlock + updatedAt let you verify freshness before ingesting.
Graduation: tokens start at $3K mcap and graduate to a full-range 1% LP at $9K (progressBps is ATH-latched — it never decreases). graduated=true tokens have immutable, vault-held liquidity.
Submissions: grab openapi.json ↗ — shapes match DexScreener's pair schema closely by design.
/api/v1/bridge/config returns the CCTP V2 domains (Base 6 → Arc 26), TokenMessenger/MessageTransmitter addresses, and the isMainnetVerified flag. The Zero1 fee is 0.2%, taken on the destination mint; the incumbent charges 3%.
Until Circle's Arc mainnet addresses are published, enabled=false and the UI shows the pending-addresses state.