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

# Trending

> Trending markets, hot topics, featured events, and biggest movers.

Returns a curated snapshot of what's trending on Polymarket right now. Combines carousel highlights, breaking news markets, hot search topics, featured events, and biggest 24h price movers.

<ResponseExample>
  ```json theme={null}
  {
    "carousel": [
      {
        "id": "69987",
        "slug": "2026-ncaa-tournament-winner",
        "title": "2026 NCAA Tournament Winner",
        "image": "https://...",
        "volume24hr": 1234567
      }
    ],
    "breaking": [
      {
        "id": "1193228",
        "slug": "will-robert-golob-be-the-next-prime-minister-of-slovenia",
        "question": "Will Robert Golob be the next Prime Minister of Slovenia?",
        "outcomePrices": ["0.595", "0.405"],
        "oneDayPriceChange": -0.015
      }
    ],
    "hotTopics": [
      { "title": "Gen", "volume": 24471729.10, "url": "/search?_q=gen" },
      { "title": "Bayern", "volume": 4733154.92, "url": "/predictions/bayern" }
    ],
    "featured": [],
    "movers": []
  }
  ```
</ResponseExample>


## OpenAPI

````yaml GET /v1/trending
openapi: 3.1.0
info:
  title: PolyNode API
  description: >-
    Real-time Polymarket data API with decoded mempool settlements, OHLCV
    candles, and full Polygon JSON-RPC proxy.
  contact:
    name: PolyNode
    url: https://polynode.dev
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.polynode.dev
    description: Production
security:
  - api_key: []
paths:
  /v1/trending:
    get:
      tags:
        - Enriched Data
      summary: Trending
      description: >-
        Curated snapshot of what's trending on Polymarket: carousel highlights,
        breaking news, hot topics, featured events, and biggest movers.
      operationId: trending
      responses:
        '200':
          description: Trending data
          content:
            application/json:
              schema:
                type: object
              example:
                carousel:
                  - id: '158299'
                    slug: us-forces-enter-iran-by
                    title: US forces enter Iran by..?
                    image: >-
                      https://polymarket-upload.s3.us-east-2.amazonaws.com/us-forces-enter-iran-by-L_p5JkCpvr0I.jpg
                    volume: 37065043.01
                    volume24hr: null
                    liquidity: null
                    active: true
                    closed: false
                breaking: []
                hotTopics:
                  - title: Gen
                    volume: 24471729.1
                    url: /search?_q=gen
                featured: []
                movers: []
        '401':
          description: Missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - api_key: []
components:
  schemas:
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````