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
}
}
Retrieve a list of current 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
}
}
Comma separated list of classes
Show child attributes
Desired sort order of topics
trending
, new
, top
Comma separated list of asset IDs. Should be UUIDs or slugs
Default response
The response is of type object
.