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

# Trending Questions

> The Trending Questions endpoint fetches suggested Copilot questions based on the latest trending topics

Trending questions are generated based on the latest trending topics each question corresponds to a topic the are ordered by the topic's trending score. The topics are part of the [Topics API](/api-reference/endpoints/topics/get-v1-current)


## OpenAPI

````yaml GET /ai/v1/questions/trending
openapi: 3.0.0
info:
  description: OpenAPI specification for the entire Messari API
  title: Messari API - Ai V1
  version: 1.0.0
servers:
  - description: Messari API
    url: https://api.messari.io
security: []
paths:
  /ai/v1/questions/trending:
    get:
      summary: Get trending questions
      description: Get questions for trending topics
      operationId: getTrendingQuestions
      parameters:
        - description: Maximum number of questions to return
          in: query
          name: limit
          required: true
          schema:
            format: int64
            type: integer
            default: 5
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/TrendingQuestionsResponse'
                  error:
                    type: string
                required:
                  - data
                type: object
              example:
                error: null
                data:
                  questions:
                    - question: >-
                        What implications does Trump's pardon of CZ have for
                        cryptocurrency regulation and market sentiment?
                      topic_title: Trump Pardons Binance Founder CZ
                      topic_id: 2faa9dc6-a855-54ed-865c-419a01fb1a8b
                    - question: >-
                        Will Bitcoin break below $100K before surging to new
                        highs, or is this consolidation just a mid-cycle reset
                        before the next leg up?
                      topic_title: Bitcoin Consolidates at $110K Amid Mixed Predictions
                      topic_id: 2f3ad098-1568-5b3f-86d3-1682ad8b36ba
                    - question: >-
                        Tell me about Hyperliquid's strategic moves with its
                        billion-dollar fundraising and first major exchange
                        listing?
                      topic_title: Hyperliquid's $1B Raise and Robinhood Listing
                      topic_id: e95b2bd7-668a-5fb8-85df-fa328931fbaa
                    - question: >-
                        What tactics are crypto users employing to maximize
                        their eligibility for valuable airdrops like Meteora and
                        idOS Network?
                      topic_title: >-
                        Meteora Airdrop Launch and Crypto Distribution
                        Strategies
                      topic_id: 8f735ef8-4947-5797-b716-4f33aa132218
                    - question: >-
                        How does Wallchain's "Quacks" system transform social
                        media engagement into potential crypto rewards?
                      topic_title: Wallchain Quacks Reward System
                      topic_id: 00f77b9b-b82c-5798-997a-3bab4cb49819
          description: Default response
        '400':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                  error:
                    type: string
                required:
                  - data
                type: object
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                  error:
                    type: string
                required:
                  - data
                type: object
          description: Unauthorized
        '500':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                  error:
                    type: string
                required:
                  - data
                type: object
          description: Internal Server Error
      security:
        - apiKey: []
components:
  schemas:
    TrendingQuestionsResponse:
      properties:
        questions:
          items:
            $ref: '#/components/schemas/TrendingTopicQuestion'
          type: array
      required:
        - questions
      type: object
    TrendingTopicQuestion:
      type: object
      description: Schema for TrendingTopicQuestion
      properties: {}
      additionalProperties: true
  securitySchemes:
    apiKey:
      in: header
      name: X-Messari-API-Key
      type: apiKey

````