Skip to main content
GET
/
news
/
sources
Get the list of news sources.
curl --request GET \
  --url https://openapiv1.coinstats.app/news/sources \
  --header 'X-API-KEY: <api-key>'
[
  {
    "sourcename": "Zycrypto",
    "coinid": "bitcoin",
    "logo": "zycrypto.png",
    "sourceImg": "https://static.coinstats.app/news/source/zycrypto_source.png",
    "weburl": "https://zycrypto.com",
    "feedurl": "https://zycrypto.com/feed/",
    "_created_at": "2018-04-25T13:06:47.850Z",
    "_updated_at": "2025-03-21T13:11:07.112Z"
  }
]
2 credits per request

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Response

Get news sources

sourcename
string
required

The name of the news source

Example:

"Zycrypto"

weburl
string
required

Main website URL of the news source

Example:

"https://zycrypto.com"

feedurl
string
required

RSS feed URL for the news source

Example:

"https://zycrypto.com/feed/"

_created_at
string<date-time>
required

Date when the news source was created in the system

Example:

"2018-04-25T13:06:47.850Z"

coinid
string

Associated coin identifier (if the news source is coin-specific)

Example:

"bitcoin"

Filename of the news source logo image

Example:

"zycrypto.png"

sourceImg
string

Full URL to the news source image/logo

Example:

"https://static.coinstats.app/news/source/zycrypto_source.png"

_updated_at
string<date-time>

Date when the news source was last updated

Example:

"2025-03-21T13:11:07.112Z"

I