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

# Get Kalshi Market

> Single Kalshi market with all platform-specific fields.



## OpenAPI

````yaml GET /v1/kalshi/markets/{ticker}
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/markets/{ticker}:
    get:
      tags:
        - Kalshi Native
      summary: Get Kalshi Market (Native)
      description: Single Kalshi market with all platform-specific fields.
      operationId: get_kalshi_market_v1_kalshi_markets__ticker__get
      parameters:
        - name: ticker
          in: path
          required: true
          schema:
            type: string
            title: Ticker
      responses:
        '200':
          description: Single Kalshi market
          content:
            application/json:
              schema:
                type: object
                title: Response Get Kalshi Market V1 Kalshi Markets  Ticker  Get
              example:
                ticker: KXBTC-26MAR28-100000
                event_ticker: KXBTC
                series_ticker: KXBTC
                title: Will Bitcoin be above $100,000 on March 28?
                status: active
                market_type: binary
                yes_bid_dollars: '0.6500'
                yes_ask_dollars: '0.6700'
                no_bid_dollars: '0.3300'
                no_ask_dollars: '0.3500'
                last_price_dollars: '0.6500'
                previous_price_dollars: '0.6200'
                volume_fp: '15432.00'
                volume_24h_fp: '3210.00'
                open_interest_fp: '5000.00'
                liquidity_dollars: '12500.00'
                open_time: '2026-03-01T00:00:00Z'
                close_time: '2026-03-28T23:59:00Z'
                expiration_time: '2026-03-29T12:00:00Z'
                created_time: '2026-02-28T10:00:00Z'
                notional_value_dollars: '1.0000'
                tick_size: '0.0100'
                response_price_units: usd_cent
                can_close_early: true
        '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

````