GET
/
news
/
v1
/
news
/
sources
Sources
curl --request GET \
  --url https://api.messari.io/news/v1/news/sources \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "sourceName": "<string>",
      "sourceType": "News"
    }
  ],
  "error": "<string>",
  "metadata": {
    "limit": 123,
    "page": 123,
    "totalPages": 123,
    "totalRows": 123
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

sourceName
string

A case-sensitive text to search by source name, i.e. CoinDesk. If provided, the results will be filtered by this text.

sourceTypes
string[]
required

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

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.