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

# Kalshi Trades

> Trade history on Kalshi with platform-specific fields: taker_side (yes/no), yes_price, no_price, and count.



## OpenAPI

````yaml GET /v1/kalshi/trades
openapi: 3.1.0
info:
  title: Arbiter
  description: >-
    Unified prediction market API. Aggregates Polymarket and Kalshi into a
    single interface with normalized data, historical trades, OHLCV candles,
    orderbook snapshots, and real-time WebSocket streaming.
  version: 1.0.0
servers: []
security: []
tags:
  - name: Markets
    description: Browse, search, and retrieve prediction markets across all platforms.
  - name: Market Data
    description: Prices, orderbooks, trades, and OHLCV candles for individual markets.
  - name: Events
    description: Markets grouped by real-world events (elections, sports, etc.).
  - name: Cross-Platform
    description: Find the same event across Polymarket and Kalshi.
  - name: Sports
    description: Browse prediction markets by sport and date.
  - name: Wallets
    description: 'Wallet analytics: profile, trades, positions, PnL, activity (Polymarket).'
  - name: Polymarket Native
    description: Raw Polymarket data with platform-specific fields.
  - name: Kalshi Native
    description: Raw Kalshi data with platform-specific fields.
  - name: Whales
    description: Track large trades across all prediction markets.
  - name: Webhooks
    description: Subscribe to events via HTTP POST — trades, whale alerts, price changes.
  - name: WebSocket
    description: Real-time streaming of trades, prices, and orderbook updates.
  - name: Auth
    description: Developer account management and API key authentication.
  - name: System
    description: Health checks and system statistics.
paths:
  /v1/kalshi/trades:
    get:
      tags:
        - Kalshi Native
      summary: Kalshi Trades (Native)
      description: >-
        Trade history on Kalshi with platform-specific fields: taker_side
        (yes/no), yes_price, no_price, and count.
      operationId: get_kalshi_trades_v1_kalshi_trades_get
      parameters:
        - name: ticker
          in: query
          required: true
          schema:
            type: string
            description: Kalshi market ticker
            title: Ticker
          description: Kalshi market ticker
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 100
            title: Limit
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
      responses:
        '200':
          description: Paginated Kalshi trades
          content:
            application/json:
              schema: {}
              example:
                trades:
                  - trade_id: t_abc123
                    ticker: KXBTC-26MAR28-100000
                    taker_side: 'yes'
                    yes_price: 65
                    no_price: 35
                    count: 10
                    created_time: '2026-03-28T14:30:00Z'
                    is_taker_side_yes: true
                cursor: next_page_cursor_token
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````