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

# Pricing & Tiers

> Choose the right AIOKA Intelligence API plan for your use case

# Pricing & Tiers

| Feature                                          | Free | Basic   | Pro      |
| ------------------------------------------------ | ---- | ------- | -------- |
| **Price**                                        | \$0  | \$49/mo | \$199/mo |
| **Calls/day**                                    | 100  | 1,000   | 10,000   |
| **Calls/minute**                                 | 2    | 30      | 100      |
| **Latest Verdict**                               | ✅    | ✅       | ✅        |
| **Current Regime**                               | ✅    | ✅       | ✅        |
| **Health Check**                                 | ✅    | ✅       | ✅        |
| **27 Live Signals**                              | ❌    | ✅       | ✅        |
| **Verdict History**                              | ❌    | ✅       | ✅        |
| **Regime History**                               | ❌    | ✅       | ✅        |
| **Cross-Asset Macro Correlation**                | ❌    | ✅       | ✅        |
| **Dark Pool Score**                              | ❌    | ✅       | ✅        |
| **News NLP / Fed Tone**                          | ❌    | ✅       | ✅        |
| **Flash Crash Alerts**                           | ❌    | ✅       | ✅        |
| **Monte Carlo Results**                          | ❌    | ✅       | ✅        |
| **AI Council Session**                           | ❌    | ❌       | ✅        |
| **Ghost Trader Signals (BTC + ETH 🧪 + SOL 🧪)** | ❌    | ❌       | ✅        |
| **SOL Ghost Trader Signals**                     | ✅    | ✅       | ✅        |
| **SOL Network Health (Gate 0)**                  | ✅    | ✅       | ✅        |
| **TAO Ghost Trader Status + Track Record**       | ✅    | ✅       | ✅        |
| **TAO Council Verdict (6 Specialist Agents)**    | ❌    | ❌       | ✅        |
| **TAO Live Signals (9 signals)**                 | ❌    | ❌       | ✅        |
| **TAO Council Run (manual trigger)**             | ❌    | ❌       | ✅        |
| **ADA Ghost Trader Status + Track Record**       | ✅    | ✅       | ✅        |
| **Multi-Asset Performance by Regime**            | ✅    | ✅       | ✅        |
| **Signal History**                               | ❌    | ❌       | ✅        |
| **Backtesting**                                  | ❌    | ❌       | ✅        |

## Free Tier

Perfect for getting started, building proof-of-concepts, or integrating
AIOKA signals into personal dashboards.

* 100 API calls per day
* Access: `verdict/latest`, `agents/performance`, `regime/current`, `health`
* No credit card required

### AI Council Agent Accuracy (Sprint 354)

* `GET /v1/agents/performance` -- historical directional accuracy of each AI Council agent, graded against the outcome of every closed BTC trade (BTC only; cached 1h)

### EUR/USD Forex Ghost Trader (Sprint 186)

* `GET /v1/forex/eurusd/status` -- live EUR/USD trader state, 9 gate evaluations, latest council verdict, live spread + bid/ask
* `GET /v1/forex/eurusd/track-record` -- full EUR/USD trade history with stats (P\&L in both pips and USD, validated paper trades X/10)

EUR/USD is AIOKA's first non-crypto, non-commodity asset. Field names use snake\_case throughout.

### ADA (Cardano) Ghost Trader (Sprint 184)

* `GET /v1/ada/status` -- live ADA Ghost Trader state, latest council verdict, regime, ADA price, RSI(1H), EMA 200
* `GET /v1/ada/track-record` -- full ADA trade history with derived stats (total trades, win rate, total PnL, avg hold, best/worst)

ADA prices use **4 decimal places** (e.g. `$0.4812`). ADA uses the **7-gate** entry framework -- no Gate 0 (network health) because Cardano has no significant network outages. Paper-mode only: AIOKA ADA Ghost Trader simulates entries until 10 validated paper trades have closed.

### Multi-Asset Performance by Regime (Sprint A2)

* `GET /v1/ghost/regime-performance` -- Ghost Trader win rate and P\&L aggregated by market regime across **all 7 councils** (BTC, ETH, SOL, ADA, TAO, Gold, EUR/USD). UNIONs every per-asset ghost-trade table, groups by the regime label persisted at entry, returns one row per regime sorted by trade count.

Public, no API key required. 300-second cache. Powers the aioka.io "Performance by Regime" widget.

[Get your free key →](/api-reference/keys/generate)

## Basic Tier — \$49/month

For active traders who want the full signal picture.

* 1,000 API calls per day
* Everything in Free, plus:
  * All 27 live market signals
  * Verdict history (last 24h)
  * Regime history (last 7 days)
  * Cross-asset macro correlation (DXY, US10Y, Gold, BTC-Nasdaq, BTC Dominance)
  * Dark Pool Score — OTC/institutional flow intelligence
  * News NLP & Fed Tone — keyword-based Fed hawkish/dovish sentiment
  * Flash Crash Alerts — circuit breaker detection across 5/15/30-min windows
  * Monte Carlo stress testing results

[Contact us to upgrade → info@aioka.io](mailto:info@aioka.io)

## Pro Tier — \$199/month

For algorithmic traders and research teams who need the full intelligence stack.

* 10,000 API calls per day
* Everything in Basic, plus:
  * AI Council -- BTC + ETH + SOL (6 agents + Chief Judge per asset)
  * Ghost Trader entry signals -- BTC live trading + ETH, SOL, and TAO paper mode (building track records)
  * TAO Council -- 6 Bittensor specialist agents (SUBNET\_ORACLE, MACRO\_SAGE, AI\_NARRATIVE, MOMENTUM\_HUNTER, LIQUIDITY\_GUARDIAN, RISK\_WARDEN) + Chief Judge. Pro-only due to taostats.io data costs and specialist agent complexity.
  * TAO Live Signals (9 signals) -- subnet growth, staking ratio, emission rate, GitHub activity, AI sector sentiment, DeFi revenue, institutional positioning
  * Signal history for any of 27 signals
  * Historical backtesting (up to 90 days)

[Contact us to upgrade → info@aioka.io](mailto:info@aioka.io)

## Rate Limit Headers

All responses include these headers:

```
X-RateLimit-Tier: free
X-RateLimit-Calls-Today: 3
X-RateLimit-Calls-Limit: 100
X-RateLimit-Reset-At: 2026-04-04T00:00:00Z
```

## Caching

Responses are cached in Redis to reduce load and improve latency.
The `cached` field in every response indicates whether the data came from cache:

```json theme={null}
{
  "ruling": "ACCUMULATE",
  "cached": true,
  "cache_ttl_seconds": 45
}
```

Cache TTLs by endpoint:

| Endpoint             | TTL                 |
| -------------------- | ------------------- |
| `verdict/latest`     | 60s                 |
| `agents/performance` | 3600s               |
| `verdict/history`    | 120s                |
| `regime/current`     | 300s                |
| `regime/history`     | 300s                |
| `signals/latest`     | 30s                 |
| `signals/history`    | 300s                |
| `council/latest`     | 60s                 |
| `ghost/signal`       | 30s                 |
| `ghost/status`       | 60s                 |
| `eth/status`         | 60s                 |
| `eth/track-record`   | 300s                |
| `sol/status`         | 60s                 |
| `sol/track-record`   | 300s                |
| `tao/status`         | 60s                 |
| `tao/track-record`   | 300s                |
| `tao/council`        | 60s                 |
| `tao/signals`        | None (always fresh) |
| `ada/status`         | None (always live)  |
| `ada/track-record`   | None (always live)  |
| `backtest`           | 3600s               |
| `monte-carlo/btc`    | 3600s               |
