Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.aioka.io/llms.txt

Use this file to discover all available pages before exploring further.

Pro tier endpoint — requires a valid Pro API key. ETH council uses the same 6-agent BTC deliberation framework with ETH-specific market context: ETH price, EMA 200, and the 7 ETH entry gates.
Tier: Pro ($199/mo) Cache: None Rate limit: 30/min (per tier) Read-only: Never writes to any trading table.

Response Fields

Top-level

FieldTypeMeaning
verdictobject | nullLatest ETH council verdict. null if no verdict has been produced yet (first 30 minutes after deploy).
nextRefreshMinutesintMinutes until the next scheduled council auto-refresh. Always 30.

verdict fields

FieldTypeMeaning
idstringUUID of this verdict record
rulingstringSTRONG_BUY / BUY / ACCUMULATE / HOLD / REDUCE / SELL / STRONG_SELL
confidencenumber0.0 — 1.0. ETH entry threshold is confidence ≥ 0.65.
agentVotesobjectPer-agent breakdown from all 6 council agents
agentVotes.<AGENT>objectEach agent entry has ruling (string) and confidence (number)
chiefRationalestring | nullChief Judge’s plain-language explanation of the ruling
snapshotSignalsobjectRaw signal readings at the time of council deliberation (key-value pairs)
createdAtstringISO 8601 timestamp of verdict

Council Agents

ETH council re-uses the BTC deliberation framework. All 6 agents receive the standard 27-signal market feed plus ETH-specific context (ETH price, ETH EMA 200, and ETH/BTC ratio). Agent analysis is informed by BTC regime and macro conditions — ETH is deeply correlated to BTC and the framework captures this by design.
AgentDomain
CHAIN_ORACLEOn-chain intelligence: exchange flows, NUPL, SOPR, whale activity
MACRO_SAGEGlobal macro: DXY, US10Y yield, Fed tone, gold correlation
SENTIMENT_MONKMarket sentiment: Fear & Greed index, options put/call ratio, social sentiment
TECH_HAWKTechnical analysis: EMA structure, RSI, momentum, MTF confluence
LIQUIDITY_GUARDIANLiquidity and flow: order-book depth, stablecoin minting, dark pool score
RISK_SHIELDRisk management: flash crash probability, stop distance, position sizing
curl https://api.aioka.io/v1/eth/council \
  -H "X-API-Key: aik_pro_your_key_here"
{
  "verdict": {
    "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
    "ruling": "ACCUMULATE",
    "confidence": 0.72,
    "agentVotes": {
      "CHAIN_ORACLE": {"ruling": "BUY", "confidence": 0.76},
      "MACRO_SAGE": {"ruling": "ACCUMULATE", "confidence": 0.68},
      "SENTIMENT_MONK": {"ruling": "ACCUMULATE", "confidence": 0.71},
      "TECH_HAWK": {"ruling": "BUY", "confidence": 0.79},
      "LIQUIDITY_GUARDIAN": {"ruling": "ACCUMULATE", "confidence": 0.70},
      "RISK_SHIELD": {"ruling": "HOLD", "confidence": 0.58}
    },
    "chiefRationale": "On-chain flows and technical structure both bullish. RISK_SHIELD's HOLD dissent reflects elevated ETH/BTC spread. Confidence trimmed to 0.72.",
    "snapshotSignals": {
      "eth_price": 3265.0,
      "rsi_1h": 52.4,
      "ema_200": 3210.5,
      "fear_greed": 58,
      "nupl": 0.52
    },
    "createdAt": "2026-05-06T08:30:00+00:00"
  },
  "nextRefreshMinutes": 30
}