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

# List Analyses

> List recent analysis summaries, keyed by market.



## OpenAPI

````yaml GET /v1/analyses
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/analyses:
    get:
      tags:
        - Insights
      summary: List recent analyses
      description: List recent analysis summaries, keyed by market.
      operationId: /v1/analyses
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            description: Maximum analyses to return
            default: 20
            title: Limit
          description: Maximum analyses to return
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AnalysisSummary'
                title: Response /V1/Analyses
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AnalysisSummary:
      properties:
        platform:
          type: string
          title: Platform
          description: kalshi, polymarket, robinhood, or coinbase
        market_id:
          type: string
          title: Market Id
          description: Platform-specific market identifier
        title:
          type: string
          title: Title
          description: Market question
        probability:
          type: number
          maximum: 1
          minimum: 0
          title: Probability
          description: Estimated probability
        confidence:
          type: number
          maximum: 1
          minimum: 0
          title: Confidence
          description: Confidence level
        recommendation:
          type: string
          title: Recommendation
          description: BUY_YES, BUY_NO, or NO_TRADE
        analyzed_at:
          type: string
          format: date-time
          title: Analyzed At
          description: When analyzed
        freshness:
          anyOf:
            - type: string
              enum:
                - fresh
                - stale
                - expired
            - type: 'null'
          title: Freshness
          description: 'Data freshness: fresh (<24h), stale (24-72h), expired (>72h)'
        analysis_type:
          anyOf:
            - type: string
              enum:
                - full
                - light
            - type: 'null'
          title: Analysis Type
          description: Whether this was a full 4-stage or light 2-call analysis
      type: object
      required:
        - platform
        - market_id
        - title
        - probability
        - confidence
        - recommendation
        - analyzed_at
      title: AnalysisSummary
      description: Compact analysis entry for list endpoints.
      example:
        analyzed_at: '2026-03-21T12:00:00Z'
        confidence: 0.82
        market_id: KXFED-26MAR19
        platform: kalshi
        probability: 0.71
        recommendation: BUY_YES
        title: Will the Fed cut rates at the March 2026 meeting?
    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

````