N

NEURON API

onchain intelligence · machine-readable

← neuronaicoin.com

Live token health scores.
Free. For humans and machines.

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.

UPDATED HOURLY BY THE NEURON DATA ENGINE

Endpoints

GEThttps://neuronaicoin.com/api/scores.json

Latest 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.

GEThttps://neuronaicoin.com/api/history.json

Rolling 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.

Response — scores.json

{
  "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
    }
  ]
}

Score & fields

FieldMeaning
score0-100 activity-health score. 65+ healthy structure · 45-64 mixed · under 45 risky. It rates structure, not price direction.
flagsLIQ OK · LOW LIQ · MICRO LIQ · BUY>SELL · SELL>BUY · FRESH (<24h) · HOT VOL (vol > mcap) · DUMP RISK (<-40% 24h)
trendVolume pace: up = last 6h running above 24h average (heating) · down = cooling · flat
liq / vol / mcapUSD, 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.

Quick start

// 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")

Fair use & roadmap

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.

Scores rate activity health — not price predictions. Not financial advice. Always DYOR.
© NEURON AI · neuronaicoin.com · data via public GeckoTerminal endpoints