GET
/
signal
/
v0
/
topics
/
global
/
current
Get Global Topics
curl --request GET \
  --url https://api.messari.io/signal/v0/topics/global/current \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "assets": [
        {
          "id": "<string>",
          "name": "<string>",
          "slug": "<string>",
          "symbol": "<string>"
        }
      ],
      "avgDocumentTimestamp": "2023-11-07T05:31:56Z",
      "classes": [
        "<string>"
      ],
      "content": "<string>",
      "documentCount": 123,
      "rank": 123,
      "summary": "<string>",
      "title": "<string>",
      "topDocuments": [
        {
          "type": "<string>",
          "url": "<string>"
        }
      ]
    }
  ],
  "error": "<string>",
  "metadata": {
    "includedClasses": [
      "<string>"
    ],
    "page": 123,
    "pageSize": 123,
    "totalPages": 123,
    "totalRows": 123
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

classes
enum<string>[]

Comma separated list of classes

sort
enum<string>

Desired sort order of topics

Available options:
trending,
new,
top
assetIDs
string[]

Comma separated list of asset IDs. Should be UUIDs or slugs

Response

200
application/json

Default response

The response is of type object.