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

# Get UMA Thread

> Get the UMA Discord discussion thread for a Polymarket market by condition ID.



## OpenAPI

````yaml /openapi.json get /api/v1/polymarket/uma/thread/{condition_id}
openapi: 3.1.0
info:
  title: Synthesis API
  version: 1.0.0
  description: Unified prediction market API for Polymarket and Kalshi.
servers:
  - url: https://synthesis.trade
security: []
tags:
  - name: Projects
    description: Create and manage project accounts, sessions, and account API keys.
  - name: Accounts
    description: >-
      Authenticate and manage account-level sessions, account API keys, and
      public account preferences.
  - name: Markets
    description: Unified market discovery and analytics across Polymarket and Kalshi.
  - name: Polymarket
    description: Polymarket market data, prices, orderbooks, trades, and holders endpoints.
  - name: Kalshi
    description: Kalshi market data, events, history, leaderboard, and profile endpoints.
  - name: Wallets
    description: Wallet management routes. Each wallet supports multiple chains.
  - name: Polygon
    description: >-
      Polygon wallet routes for balances, orders, minting, redemption,
      withdrawals, and swaps.
  - name: Polygon Copytrades
    description: Polymarket copytrade configuration and management for Polygon wallets.
  - name: Solana
    description: >-
      Solana wallet routes used for Kalshi balances, KYC, orders, redemption,
      and withdrawals.
  - name: News
    description: News endpoints with market and event matching.
  - name: WebSockets
    description: >-
      Real-time streaming endpoints for orderbooks, trades, balances, and live
      data feeds.
paths:
  /api/v1/polymarket/uma/thread/{condition_id}:
    get:
      tags:
        - Polymarket
      summary: Get UMA Thread
      description: >-
        Get the UMA Discord discussion thread for a Polymarket market by
        condition ID.
      operationId: get-uma-thread
      parameters:
        - name: condition_id
          in: path
          required: true
          description: Polymarket condition ID.
          schema:
            type: string
            example: '0x2708cbcb7ad265632ba575004d3668b775a450f7db9e13d4898b54802adbe9dc'
      responses:
        '200':
          description: UMA thread
          content:
            application/json:
              example:
                success: true
                response:
                  - message: |
                      **P2 Yes**

                      Per Polymarket clarification.
                    sender: voter123
                    senderPicture: >-
                      https://cdn.discordapp.com/avatars/634236418310275072/a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6
                    time: 1776798542
                    id: '1496226275998564001'
                    replies: []
                  - message: |
                      P2 Yes
                    sender: disputebot
                    senderPicture: >-
                      https://cdn.discordapp.com/avatars/1044680389674938408/f1e2d3c4b5a6f7e8d9c0b1a2f3e4d5c6
                    time: 1776841429
                    id: '1496406157261144002'
                    replies: []
      security: []

````