> ## Documentation Index
> Fetch the complete documentation index at: https://rekko.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Event Analysis

> Fetch the latest completed event analysis.

Returns 404 if no analysis exists, 202 if still running.
Requires INSIGHT tier.



## OpenAPI

````yaml GET /v1/events/{slug}/analysis
openapi: 3.1.0
info:
  title: Rekko AI — Prediction Market Intelligence
  description: >-
    The brain for prediction market trading. Deep AI research, Bayesian causal
    decomposition, portfolio-aware strategy signals, cross-platform arbitrage,
    and execution guidance — all in one API. Covers Kalshi, Polymarket,
    Robinhood, and Coinbase. Clean flat JSON designed for developers and
    autonomous trading agents.
  contact:
    name: Rekko AI
    url: https://rekko.ai/
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.rekko.ai
security: []
tags:
  - name: Markets
    description: Prediction market listings, history, resolution, and execution guidance
  - name: Insights
    description: AI-powered research insights with causal decomposition
  - name: Strategy
    description: >-
      Actionable trading signals with Kelly-derived position sizing and causal
      decomposition
  - name: Portfolio
    description: Portfolio-aware strategy, correlation analysis, and hedge recommendations
  - name: Arbitrage
    description: Cross-platform arbitrage detection (Kalshi vs Polymarket vs Robinhood)
  - name: Analytics
    description: Calibration metrics, sentiment, and performance tracking
  - name: Streaming
    description: Real-time SSE event stream and webhooks
  - name: Consensus
    description: Agent trade aggregation and crowd probability
paths:
  /v1/events/{slug}/analysis:
    get:
      tags:
        - Event Analysis
      summary: Get event analysis
      description: |-
        Fetch the latest completed event analysis.

        Returns 404 if no analysis exists, 202 if still running.
        Requires INSIGHT tier.
      operationId: /v1/events/{slug}/analysis
      parameters:
        - name: slug
          in: path
          required: true
          schema:
            type: string
            maxLength: 200
            description: Event slug
            title: Slug
          description: Event slug
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventAnalysisResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EventAnalysisResponse:
      properties:
        event_slug:
          type: string
          title: Event Slug
          description: Event slug identifier
        event_title:
          type: string
          title: Event Title
          description: Event question/title
        platform:
          type: string
          title: Platform
          description: Primary platform
        category:
          type: string
          title: Category
          description: Event category
          default: ''
        market_count:
          type: integer
          minimum: 0
          title: Market Count
          description: Total markets in the event
        summary:
          type: string
          title: Summary
          description: Executive summary of the event analysis
        recommendation:
          type: string
          title: Recommendation
          description: Best value recommendation or NO_BET
        top_picks:
          items:
            type: string
          type: array
          title: Top Picks
          description: Market titles with best edge
        confidence:
          type: number
          maximum: 1
          minimum: 0
          title: Confidence
          description: Overall analysis confidence
        market_breakdowns:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Market Breakdowns
          description: >-
            Per-market probability estimates: {title, estimated_probability,
            market_price, edge, confidence, one_liner}
        correlations:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Correlations
          description: >-
            Market correlations: {market_a_title, market_b_title, relationship,
            explanation}
        probability_sum:
          type: number
          title: Probability Sum
          description: Sum of estimated probabilities (for mutex events, should be ~1.0)
          default: 0
        mutually_exclusive:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Mutually Exclusive
          description: Whether outcomes are mutually exclusive
        what_would_change_mind:
          items:
            type: string
          type: array
          title: What Would Change Mind
          description: What would change the recommendation
        analyzed_at:
          type: string
          format: date-time
          title: Analyzed At
          description: When the analysis was produced
        models_used:
          items:
            type: string
          type: array
          title: Models Used
          description: Model identifiers used
      type: object
      required:
        - event_slug
        - event_title
        - platform
        - market_count
        - summary
        - recommendation
        - confidence
        - analyzed_at
      title: EventAnalysisResponse
      description: Event analysis result for the Feed API.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````