Skip to main content
This endpoint is public — no API key required. Powers the ETH panel on aioka.io/live. (Sprint 258 — first multi-asset expansion after BTC.)
Tier: Public ✅ Cache: None — always live Read-only: Never writes to any trading table.
⚠️ This is a paper-trading status snapshot, not financial advice. AIOKA ETH Ghost Trader is a simulation. Never make real financial decisions based solely on this signal.

Response Fields

FieldTypeMeaning
statusstring"WAITING" (no open ETH trade) or "IN_TRADE"
currentTradeobject | nullOpen ETH trade details when status == "IN_TRADE"
currentTrade.entryPricenumberETH entry price (USD)
currentTrade.sizeEthnumberPosition size in ETH
currentTrade.pnlUsdnumberLive P&L in USD
currentTrade.pnlPctnumberLive P&L as % of position cost
currentTrade.tp1HitboolWhether TP1 partial close has fired
latestVerdictobject | nullLatest ETH council verdict
latestVerdict.rulingstringSTRONG_BUY / BUY / ACCUMULATE / HOLD / REDUCE / SELL / STRONG_SELL
latestVerdict.confidencenumber0.0–1.0
latestVerdict.createdAtstringISO 8601 timestamp
regimestring | nullMarket regime (e.g. ACCUMULATION)
rsi1hnumber | nullETH 1H RSI
ema200number | nullETH 1H EMA(200)
ethPricenumber | nullLatest ETH/USD
generatedAtstringResponse timestamp
curl https://api.aioka.io/v1/eth/status
{
  "status": "WAITING",
  "currentTrade": null,
  "latestVerdict": {
    "ruling": "ACCUMULATE",
    "confidence": 0.72,
    "createdAt": "2026-04-28T10:15:00+00:00"
  },
  "regime": "ACCUMULATION",
  "rsi1h": 52.4,
  "ema200": 3210.5,
  "ethPrice": 3265.0,
  "generatedAt": "2026-04-28T10:30:00+00:00"
}