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

# Resolution Intelligence

> Resolution timing, mechanism, and time-value analysis.



## OpenAPI

````yaml GET /v1/markets/{platform}/{market_id}/resolution
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}/resolution:
    get:
      tags:
        - Markets
      summary: Get resolution intelligence
      description: Resolution timing, mechanism, and time-value analysis.
      operationId: /v1/markets/{platform}/{market_id}/resolution
      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
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResolutionIntelligence'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ResolutionIntelligence:
      properties:
        market_id:
          type: string
          title: Market Id
          description: Market identifier
        platform:
          type: string
          title: Platform
          description: kalshi, polymarket, robinhood, or coinbase
        title:
          type: string
          title: Title
          description: Market title
          default: ''
        status:
          type: string
          title: Status
          description: 'Market status: ''active'', ''closed'', ''determined'', ''finalized'''
          default: active
        expiration_date:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expiration Date
          description: Latest expiration date
        close_date:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Close Date
          description: When market stops accepting orders
        hours_to_expiration:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
          title: Hours To Expiration
          description: Hours until expiration
        resolution_mechanism:
          type: string
          title: Resolution Mechanism
          description: >-
            How this market resolves: 'scheduled_data_release', 'event_outcome',
            'date_based', 'continuous_monitoring', 'unknown'
          default: unknown
        rules_summary:
          type: string
          title: Rules Summary
          description: Resolution rules from the platform
          default: ''
        time_urgency:
          type: string
          title: Time Urgency
          description: >-
            Time urgency: 'critical' (<24h), 'high' (1-3d), 'medium' (3-14d),
            'low' (>14d)
          default: low
        theta_estimate:
          anyOf:
            - type: number
            - type: 'null'
          title: Theta Estimate
          description: Estimated daily time decay in cents
        key_dates:
          items:
            $ref: '#/components/schemas/KeyDate'
          type: array
          title: Key Dates
          description: Significant upcoming dates
        recurring_schedule:
          anyOf:
            - type: string
            - type: 'null'
          title: Recurring Schedule
          description: Matching RecurringSchedule name if known
        generated_at:
          type: string
          format: date-time
          title: Generated At
          description: When this intelligence was generated
      type: object
      required:
        - market_id
        - platform
      title: ResolutionIntelligence
      description: Resolution timing, mechanism, and time-value analysis.
      example:
        close_date: '2026-03-19T14:00:00Z'
        expiration_date: '2026-03-19T20:00:00Z'
        generated_at: '2026-03-21T14:30:00Z'
        hours_to_expiration: 42.5
        key_dates:
          - date: '2026-03-19T14:00:00Z'
            impact: high
            label: FOMC Rate Decision announcement
          - date: '2026-03-19T14:30:00Z'
            impact: medium
            label: Fed Chair press conference
        market_id: KXFED-26MAR19
        platform: kalshi
        recurring_schedule: Fed Rate Decision
        resolution_mechanism: scheduled_data_release
        rules_summary: >-
          Resolves YES if the Federal Reserve announces a target rate decrease
          at the March 2026 FOMC meeting.
        status: active
        theta_estimate: 0.3
        time_urgency: high
        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
    KeyDate:
      properties:
        date:
          type: string
          format: date-time
          title: Date
          description: The key date
        label:
          type: string
          title: Label
          description: What happens on this date
        impact:
          type: string
          title: Impact
          description: 'Expected impact: ''high'', ''medium'', ''low'''
          default: medium
      type: object
      required:
        - date
        - label
      title: KeyDate
      description: A significant date related to market resolution.
      example:
        date: '2026-03-19T14:00:00Z'
        impact: high
        label: FOMC Rate Decision announcement
    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

````