> ## 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 Polymarket Market

> Single Polymarket market with all platform-specific fields.



## OpenAPI

````yaml GET /v1/polymarket/markets/{condition_id}
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/polymarket/markets/{condition_id}:
    get:
      tags:
        - Polymarket Native
      summary: Get Polymarket Market (Native)
      description: Single Polymarket market with all platform-specific fields.
      operationId: get_polymarket_market_v1_polymarket_markets__condition_id__get
      parameters:
        - name: condition_id
          in: path
          required: true
          schema:
            type: string
            title: Condition Id
      responses:
        '200':
          description: Single Polymarket market
          content:
            application/json:
              schema:
                type: object
                title: >-
                  Response Get Polymarket Market V1 Polymarket Markets 
                  Condition Id  Get
              example:
                id: '531202'
                question: Will Bitcoin hit $100k by June 2026?
                conditionId: >-
                  0xb48621f7eba07b0a3eeabc6afb09ae42490239903997b9d412b0f69aeb040c8b
                slug: will-bitcoin-hit-100k-by-june-2026
                outcomes: '["Yes", "No"]'
                outcomePrices: '["0.65", "0.35"]'
                volume: '1523400.52'
                liquidity: '45320.66'
                active: true
                closed: false
                startDate: '2025-03-26T16:49:31.084Z'
                endDate: '2026-06-30T12:00:00Z'
                createdAt: '2025-03-26T14:44:34.145447Z'
                updatedAt: '2026-03-29T05:25:34.978655Z'
                new: false
                featured: false
                archived: false
                clobTokenIds: '["12345678901234567890", "98765432109876543210"]'
                tokens:
                  - token_id: '12345678901234567890'
                    outcome: 'Yes'
                    price: 0.65
                  - token_id: '98765432109876543210'
                    outcome: 'No'
                    price: 0.35
                neg_risk: false
        '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

````