GET
/
news
/
v1
/
news
/
feed
Get news feed
curl --request GET \
  --url https://api.messari.io/news/v1/news/feed \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "assets": [
        {
          "id": "<string>",
          "name": "<string>",
          "slug": "<string>",
          "symbol": "<string>"
        }
      ],
      "category": "<string>",
      "description": "<string>",
      "publishTimeMillis": 123,
      "sentiment": [
        {
          "id": "<string>",
          "name": "<string>",
          "sentiment": 123,
          "slug": "<string>",
          "symbol": "<string>"
        }
      ],
      "source": {
        "id": "<string>",
        "sourceName": "<string>",
        "sourceType": "News"
      },
      "subcategory": "<string>",
      "title": "<string>",
      "url": "<string>"
    }
  ],
  "error": "<string>",
  "metadata": {
    "limit": 123,
    "page": 123,
    "totalPages": 123,
    "totalRows": 123
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

publishedBefore
integer

Timestamp in milliseconds UTC. If publishedBefore is provided, publishedAfter must be greater.

publishedAfter
integer

Timestamp in milliseconds UTC.

sourceTypes
string[]
required

List of source types to filter by. If provided, the results will be filtered by these source types: Blog,Forum,News

sourceIds
string[]
required

List of source IDs to filter by. If provided, the results will be filtered by these source IDs.

assetIds
string[]
required

List of asset IDs to filter by. If provided, the results will be filtered by these asset IDs.

sort
enum<integer>

Sort by publish time in ascending or descending order. 2 DESC by default.

Available options:
1,
2
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.