GET
/
news
/
v1
/
news
/
assets
Assets Tagged in News Articles
curl --request GET \
  --url https://api.messari.io/news/v1/news/assets \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "symbol": "<string>"
    }
  ],
  "error": "<string>",
  "metadata": {
    "limit": 123,
    "page": 123,
    "totalPages": 123,
    "totalRows": 123
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

nameOrSymbol
string

A case-sensitive text to search by asset name, i.e. Bitcoin, or priority symbol, i.e. BTC. If provided, the results will be filtered by this text.

limit
integer
required

Number of results per page

page
integer
required

Page number

Response

200
application/json

Default response

The response is of type object.