
onchain intelligence · machine-readable
The same NEURON scores that power our tools — as clean JSON. Built for trading bots, AI agents and builders on Robinhood Chain. No key, no signup, no rate games.
https://neuronaicoin.com/api/scores.jsonLatest scores for the most active Robinhood Chain pools — refreshed every hour. Includes score (0-100), risk flags, volume trend, liquidity, 24h change and token address.
https://neuronaicoin.com/api/history.jsonRolling hourly snapshots (~7 days). Compact keys: s=symbol, sc=score, l=liquidity, v=24h volume, c=24h change. Use it to detect score drops, momentum shifts and trend reversals.
{
"generated_at": "2026-07-21T22:04:11Z",
"chain": "robinhood",
"pool_count": 30,
"avg_score": 43,
"pools": [
{
"sym": "HOOD",
"tokenAddr": "0x…",
"score": 79,
"flags": ["LIQ OK", "BUY>SELL"],
"trend": "up",
"liq": 512340,
"vol": 1893220,
"ch24": 12.4
}
]
}
| Field | Meaning |
|---|---|
| score | 0-100 activity-health score. 65+ healthy structure · 45-64 mixed · under 45 risky. It rates structure, not price direction. |
| flags | LIQ OK · LOW LIQ · MICRO LIQ · BUY>SELL · SELL>BUY · FRESH (<24h) · HOT VOL (vol > mcap) · DUMP RISK (<-40% 24h) |
| trend | Volume pace: up = last 6h running above 24h average (heating) · down = cooling · flat |
| liq / vol / mcap | USD, rounded. From public GeckoTerminal data. |
The formula is public by design — every score on our site shows its full math ("Why this score?"). Same formula here.
// JavaScript — filter healthy pools const r = await fetch("https://neuronaicoin.com/api/scores.json"); const data = await r.json(); const healthy = data.pools.filter(p => p.score >= 65); # Python — agent risk check before a trade import requests pools = requests.get("https://neuronaicoin.com/api/scores.json").json()["pools"] risk = {p["sym"]: p["score"] for p in pools} if risk.get("HMM", 0) < 45: print("High risk — skip")
Free for any use with attribution ("data by NEURON AI · neuronaicoin.com"). Data updates hourly — polling more often than that just wastes your requests. Building an agent or bot on top of this? We'd love to hear: use the contact form on the homepage.
Coming next: score-change alerts, longer history, more chains, and authenticated tiers for high-volume consumers.