⚙️ CryptoAgents API
On-chain intelligence for pros and AI agents: risk verdicts, zero-second launches, bonding trenches, smart money, wallet PnL. Free tier — 500 requests/day. Auth: X-API-Key header.
You have access to the CryptoAgents API (https://cryptoagents.tech) — on-chain intelligence for Solana and 20+ EVM chains. Auth: header "X-API-Key: <KEY>". Base URL: https://cryptoagents.tech/api/v1 Endpoints: - GET /scan?chain=solana&address=<token> — risk verdict (level, score 0-100) + findings (honeypot, taxes, liquidity, holders). Use before any buy decision. - GET /feed?mode=new|trending&chains=solana&limit=30 — live feed of new/trending tokens with price, liquidity, volume. - GET /trenches — launchpad lifecycle: newborn (zero-second launches), almost (bonding curve >60%), migrated (graduated to DEX). Each item has bondingPct. - GET /token-metrics?mint=<mint>&pool=<pool> — top10Pct, devPct, sniperPct, bundledPct, freshPct (security concentration metrics). - GET /smart-money?limit=20 — profitable wallets auto-scouted by 90d on-chain PnL (address, totalPnlSol, winratePct, swaps). - GET /wallet-pnl?chain=solana&address=<wallet> — 90d PnL, win rate and per-token breakdown for any wallet. - GET /ohlcv?chain=solana&address=<pool-or-mint>&tf=1m|5m|15m|1h|4h|1d — OHLCV candles for charts and backtests. - GET /top-traders?chain=solana&address=<mint> — who is making money on a token: realized PnL per wallet. - GET /holders-map?chain=solana&address=<mint> — holder clusters with entity labels (insiders, funds, CEX). - GET /search?q=<ticker|name|address> — token search across the indexer. - GET /launches?limit=50 — raw newest launches from our own indexer (zero-second). - GET /rank?tab=snipers|devs — leaderboards: serial snipers and conveyor devs. - GET /quote?chain=solana&side=buy|sell&token=<mint>&amount=<base units> — executable Jupiter quote with our fee included (read-only). Rules: treat verdict level "high"/"critical" as do-not-buy. Prefer tokens with top10Pct<30, devPct<10, bundledPct<30. Rate limit: 500 req/day per key.
/api/v1/scanToken risk scan: verdict level + score 0–100, findings (honeypot, taxes, liquidity locks, holder concentration), main pair.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/scan?chain=solana&address=<mint>"
/api/v1/feedLive feed of new or trending tokens across chains (price, liquidity, volume, txns, age).
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/feed?mode=new&chains=solana&limit=30"
/api/v1/trenchesLaunchpad lifecycle in three columns: newborn (zero-second, our own indexer), almost bonded (curve % on-chain), migrated to DEX.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/trenches"
/api/v1/token-metricsSecurity concentration metrics: top-10 %, dev holding %, sniper %, bundle %, fresh-wallet % (Solana, on-chain).
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/token-metrics?mint=<mint>&pool=<pool>"
/api/v1/smart-moneyAuto-scouted profitable wallets: 90d PnL, win rate, swaps, top tokens.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/smart-money?limit=20"
/api/v1/wallet-pnl90-day PnL profile of any wallet (Solana or EVM): realized/unrealized, win rate, per-token results.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/wallet-pnl?chain=solana&address=<wallet>"
/api/v1/ohlcvOHLCV candles (1m…1d) from our own indexer — for charts, bots and backtests.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/ohlcv?chain=solana&address=<pool>&tf=5m"
/api/v1/top-tradersTop traders of a token: realized PnL, buys/sells per wallet.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/top-traders?chain=solana&address=<mint>"
/api/v1/holders-mapHolder clusters with entity labels — insiders, funds, CEX wallets.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/holders-map?chain=solana&address=<mint>"
/api/v1/searchToken search by ticker, name or address.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/search?q=BONK"
/api/v1/launchesRaw newest launches straight from our indexer — every token from second zero.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/launches?limit=50"
/api/v1/rankLeaderboards: serial snipers and conveyor devs ranked by our indexer.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/rank?tab=snipers"
/api/v1/quoteExecutable Jupiter quote with platform fee included — price a trade before you send it from your own stack.
curl -H "X-API-Key: $KEY" "https://cryptoagents.tech/api/v1/quote?chain=solana&side=buy&token=<mint>&amount=100000000"
Need higher limits, webhooks or trading endpoints? Ping us — the terminal's non-custodial trading and agent-wallet automation are coming to the API next.