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

> Get recent news with matched prediction market context.



## OpenAPI

````yaml /openapi.json get /api/v1/news
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:
    get:
      tags:
        - News
      summary: Get News
      description: Get recent news with matched prediction market context.
      operationId: get-news
      parameters:
        - 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: News feed
          content:
            application/json:
              example:
                success: true
                response:
                  - news:
                      news_id: c3d4e5f6-a7b8-9012-cdef-0123456789ab
                      title: Federal Reserve announces rate decision
                      source: Reuters
                      description: >-
                        Officials held rates steady while signaling ongoing
                        inflation monitoring.
                      url: https://example.com/news/fed-rate-decision
                      matches:
                        - venue: polymarket
                          event_id: '12345'
                          score: 0.92
                      published_at: '2026-01-01T00:00:00'
                      created_at: '2026-01-01T00:00:00'
                    events:
                      - venue: polymarket
                        score: 0.92
                        event:
                          event_id: 12345
                          title: Will the Fed cut rates by June?
                          slug: will-the-fed-cut-rates-by-june
                          description: >-
                            This market resolves to Yes if the Federal Reserve
                            cuts rates before July 2026.
                          image: https://example.com/fed-rates.png
                          tags:
                            - economics
                            - fed
                          labels:
                            - macro
                            - rates
                          neg_risk: false
                          active: true
                          liquidity: '2000000'
                          volume: '8000000'
                          volume24hr: '400000'
                          volume1wk: '1500000'
                          volume1mo: '3500000'
                          volume1yr: '8000000'
                          live:
                            live: false
                            ended: false
                          created_at: '2026-01-01T00:00:00'
                          updated_at: '2026-01-01T00:00:00'
                          ends_at: '2026-06-30T23:59:59'
      security: []

````