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

# Poll Analysis Status

> Check the status of an async analysis.



## OpenAPI

````yaml GET /v1/markets/{platform}/{market_id}/analyze/{analysis_id}/status
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/markets/{platform}/{market_id}/analyze/{analysis_id}/status:
    get:
      tags:
        - Insights
      summary: Poll analysis status
      description: Check the status of an async analysis.
      operationId: /v1/markets/{platform}/{market_id}/analyze/{analysis_id}/status
      parameters:
        - name: platform
          in: path
          required: true
          schema:
            type: string
            examples:
              - kalshi
            title: Platform
        - name: market_id
          in: path
          required: true
          schema:
            type: string
            examples:
              - KXAGICO-COMP-28Q1
            title: Market Id
        - name: analysis_id
          in: path
          required: true
          schema:
            type: string
            examples:
              - rk-a1b2c3d4e5f6
            title: Analysis Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalysisStatus'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AnalysisStatus:
      properties:
        analysis_id:
          type: string
          title: Analysis Id
          description: Opaque analysis identifier (rk-...)
        status:
          type: string
          enum:
            - running
            - complete
            - error
          title: Status
          description: Current status
        poll_url:
          type: string
          title: Poll Url
          description: URL to poll for status updates
          default: ''
        estimated_seconds:
          type: integer
          title: Estimated Seconds
          description: Estimated time to completion
          default: 60
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
          description: Error details if status is 'error'
      type: object
      required:
        - analysis_id
        - status
      title: AnalysisStatus
      description: Status of an async analysis request.
      example:
        analysis_id: rk-a1b2c3d4e5f6
        estimated_seconds: 60
        poll_url: /v1/markets/kalshi/KXFED-26MAR19/analyze/rk-a1b2c3d4e5f6/status
        status: running
    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

````