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

# Report Trade

> Report a trade for consensus probability aggregation.



## OpenAPI

````yaml POST /v1/trades/report
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/trades/report:
    post:
      tags:
        - Consensus
      summary: Report a trade for consensus
      description: Report a trade for consensus probability aggregation.
      operationId: /v1/trades/report
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TradeReport'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TradeReportResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TradeReport:
      properties:
        market_id:
          type: string
          title: Market Id
          description: Market identifier
        platform:
          type: string
          title: Platform
          description: Platform
          default: kalshi
        side:
          type: string
          title: Side
          description: '''yes'' or ''no'''
        size_usd:
          type: number
          minimum: 0
          title: Size Usd
          description: Trade size in USD
        price:
          type: number
          maximum: 1
          minimum: 0
          title: Price
          description: Execution price
      type: object
      required:
        - market_id
        - side
        - size_usd
        - price
      title: TradeReport
      description: Agent-reported trade for consensus aggregation.
      example:
        market_id: KXFED-26MAR19
        platform: kalshi
        price: 0.62
        side: 'yes'
        size_usd: 200
    TradeReportResponse:
      properties:
        status:
          type: string
          title: Status
          description: Report status
          default: accepted
        trade_count:
          type: integer
          title: Trade Count
          description: Total trades reported by this agent
      type: object
      required:
        - trade_count
      title: TradeReportResponse
      description: Confirmation of reported trade.
      example:
        status: accepted
        trade_count: 47
    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

````