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. SOL council uses the BTC deliberation framework augmented with 7 SOL-specific signals (network TPS, DeFi TVL, staking participation, SOL/BTC ratio, funding rate, memecoin activity, and network health).
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 SOL council verdict. null if no verdict has been produced yet.
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. SOL 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 deliberation time, including SOL-specific signals
createdAtstringISO 8601 timestamp of verdict

Council Agents

SOL council re-uses the BTC deliberation framework. All 6 agents receive the standard 27-signal BTC market feed plus SOL-specific context: SOL price, EMA 200, network health (Gate 0), and all 7 SOL signals. Network health context is injected into the prompt — a DEGRADED Solana network is flagged to all agents, which typically results in a more conservative ruling.
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, put/call ratio, social sentiment
TECH_HAWKTechnical analysis: EMA structure, RSI, momentum, MTF confluence
LIQUIDITY_GUARDIANLiquidity and flow: SOL DeFi TVL trend, SOL funding rate, stablecoin flows
RISK_SHIELDRisk management: SOL network health risk, flash crash probability, position sizing
curl https://api.aioka.io/v1/sol/council \
  -H "X-API-Key: aik_pro_your_key_here"
{
  "verdict": {
    "id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
    "ruling": "ACCUMULATE",
    "confidence": 0.71,
    "agentVotes": {
      "CHAIN_ORACLE": {"ruling": "ACCUMULATE", "confidence": 0.73},
      "MACRO_SAGE": {"ruling": "HOLD", "confidence": 0.62},
      "SENTIMENT_MONK": {"ruling": "ACCUMULATE", "confidence": 0.70},
      "TECH_HAWK": {"ruling": "BUY", "confidence": 0.77},
      "LIQUIDITY_GUARDIAN": {"ruling": "ACCUMULATE", "confidence": 0.68},
      "RISK_SHIELD": {"ruling": "HOLD", "confidence": 0.60}
    },
    "chiefRationale": "DeFi TVL stable and network HEALTHY. MACRO_SAGE cautious on macro backdrop. Averaging to ACCUMULATE at 0.71 confidence.",
    "snapshotSignals": {
      "sol_price": 156.8,
      "rsi_1h": 54.2,
      "ema_200": 152.3,
      "sol_network_tps": 2850.5,
      "sol_defi_tvl_trend": 0.034,
      "sol_staking_participation": 0.68
    },
    "createdAt": "2026-05-06T08:30:00+00:00"
  },
  "nextRefreshMinutes": 30
}