GET
/
ai
/
v1
/
questions
/
trending
Get trending questions
curl --request GET \
  --url https://api.messari.io/ai/v1/questions/trending \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": {
    "questions": [
      {
        "question": "<string>",
        "topic_id": "<string>",
        "topic_title": "<string>"
      }
    ]
  },
  "error": "<string>"
}
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 Signal dataset

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

limit
integer
required

Maximum number of questions to return

Response

200
application/json

Default response

The response is of type object.