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

> Get news for a specific market ID.



## OpenAPI

````yaml /openapi.json get /api/v1/news/market/{market_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/news/market/{market_id}:
    get:
      tags:
        - News
      summary: Get Market News
      description: Get news for a specific market ID.
      operationId: get-market-news
      parameters:
        - name: market_id
          in: path
          required: true
          schema:
            type: string
        - name: limit
          in: query
          required: false
          description: Maximum articles to return.
          schema:
            type: integer
            default: 10
            example: 10
        - name: offset
          in: query
          required: false
          description: Pagination offset.
          schema:
            type: integer
            default: 0
            example: 0
      responses:
        '200':
          description: Market news
          content:
            application/json:
              example:
                success: true
                response:
                  - news_id: c4d5e6f7-a8b9-0123-cdef-1234567890ab
                    title: Bitcoin surges after ETF inflows accelerate
                    source: Bloomberg
                    description: >-
                      ETF demand pushed spot BTC higher and moved related
                      prediction markets.
                    url: https://example.com/news/bitcoin-etf-inflows
                    matches:
                      - market_id: KXBTC-25-T100000
                        venue: kalshi
                        score: 0.88
                    published_at: '2025-01-16T09:30:00'
                    created_at: '2025-01-16T09:31:00'
      security: []

````