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

# Latest Council Session

> Most recent AI Council multi-agent verdict

<Note>
  To use the playground, enter your API key in the **X-API-Key** field above.
  Requires PRO tier key (\$199/mo). Contact [info@aioka.io](mailto:info@aioka.io) to upgrade.
</Note>

**Tier:** Pro (\$199/mo) 🔒
**Cache TTL:** 60 seconds

## The 6 Agents

| Agent              | Domain             |
| ------------------ | ------------------ |
| CHAIN ORACLE       | On-chain analytics |
| MACRO SAGE         | Macro environment  |
| SENTIMENT MONK     | Market sentiment   |
| TECH HAWK          | Technical analysis |
| LIQUIDITY GUARDIAN | Liquidity depth    |
| RISK SHIELD        | Risk assessment    |

<RequestExample>
  ```bash curl theme={null}
  curl https://api.aioka.io/v1/council/latest \
    -H "X-API-Key: aik_pro_your_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "ruling": "ACCUMULATE",
    "confidence": 0.77,
    "consensus": "BULLISH",
    "score": 0.42,
    "agents": [
      {
        "agent": "CHAIN ORACLE",
        "ruling": "BUY",
        "confidence": 0.82,
        "thesis": "On-chain accumulation signals are strong."
      },
      {
        "agent": "MACRO SAGE",
        "ruling": "ACCUMULATE",
        "confidence": 0.71,
        "thesis": "DXY weakness supports risk-on environment."
      }
    ],
    "agents_failed": 0,
    "session_at": "2026-04-03T09:45:00Z",
    "cached": true,
    "cache_ttl_seconds": 55
  }
  ```
</ResponseExample>


## OpenAPI

````yaml GET /v1/council/latest
openapi: 3.1.0
info:
  title: AIOKA Intelligence API
  description: |

    ## AI-powered crypto market intelligence

    AIOKA Intelligence API provides real-time access to our AI Council verdicts,
    market signals, regime detection, and Ghost Trader entry signals.

    ### Tiers
    - **Free**: 100 calls/day — Verdict + Regime
    - **Basic** ($49/mo): 1,000 calls/day — + Signals
    - **Pro** ($199/mo): 10,000 calls/day — + Council + Ghost

    ### Authentication
    Pass your API key in the `X-API-Key` header:

    ```
    X-API-Key: aik_free_xxxxxxxxxxxx
    ```

    ### Get your API key
    `POST /v1/keys/generate` (free tier, no credit card)
  contact:
    name: AIOKA Support
    url: https://docs.aioka.io/
    email: api@aioka.io
  license:
    name: Commercial
    url: https://aioka.io/terms
  version: 1.0.0
servers:
  - url: https://api.aioka.io
    description: Production — AIOKA Intelligence API
security: []
paths:
  /v1/council/latest:
    get:
      tags:
        - Council
      summary: Latest AI Council Session
      description: >-
        Returns the most recent AI Council session results including all 6 agent
        verdicts,

        Chief Judge ruling, and consensus.


        **Tier:** Pro ($199/mo) 🔒

        **Cache TTL:** 60 seconds

        **Rate limit:** 10,000 calls/day, 100/minute


        ### The 6 Agents

        | Agent | Domain |

        |-------|--------|

        | CHAIN ORACLE | On-chain analytics |

        | MACRO SAGE | Macro environment |

        | SENTIMENT MONK | Market sentiment |

        | TECH HAWK | Technical analysis |

        | LIQUIDITY GUARDIAN | Liquidity depth |

        | RISK SHIELD | Risk assessment |
      operationId: get_council_latest_v1_council_latest_get
      responses:
        '200':
          description: Latest council session
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CouncilLatestResponse'
        '401':
          description: Invalid or missing API key
        '403':
          description: Pro tier required
        '429':
          description: Rate limit exceeded
      security:
        - APIKeyHeader: []
components:
  schemas:
    CouncilLatestResponse:
      properties:
        ruling:
          type: string
          title: Ruling
        confidence:
          type: number
          title: Confidence
        consensus:
          type: string
          title: Consensus
        score:
          type: number
          title: Score
        agents:
          items:
            $ref: '#/components/schemas/AgentVote'
          type: array
          title: Agents
        agents_failed:
          type: integer
          title: Agents Failed
        session_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Session At
        cached:
          type: boolean
          title: Cached
        cache_ttl_seconds:
          type: integer
          title: Cache Ttl Seconds
      type: object
      required:
        - ruling
        - confidence
        - consensus
        - score
        - agents
        - agents_failed
        - session_at
        - cached
        - cache_ttl_seconds
      title: CouncilLatestResponse
      example:
        agents:
          - agent: CHAIN ORACLE
            confidence: 0.82
            ruling: BUY
            thesis: On-chain accumulation signals are strong.
        agents_failed: 0
        cache_ttl_seconds: 55
        cached: true
        confidence: 0.77
        consensus: BULLISH
        ruling: ACCUMULATE
        score: 0.42
        session_at: '2026-04-03T09:45:00Z'
    AgentVote:
      properties:
        agent:
          type: string
          title: Agent
        ruling:
          type: string
          title: Ruling
        confidence:
          type: number
          title: Confidence
        thesis:
          anyOf:
            - type: string
            - type: 'null'
          title: Thesis
      type: object
      required:
        - agent
        - ruling
        - confidence
        - thesis
      title: AgentVote
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      description: 'Your AIOKA Intelligence API key (format: aik_{tier}_{random})'
      in: header
      name: X-API-Key

````