GET
/
news
cURL
curl --request GET \
  --url https://openapiv1.coinstats.app/news \
  --header 'X-API-KEY: <api-key>'
{
  "result": [
    {
      "id": "<string>",
      "searchKeyWords": [
        "<string>"
      ],
      "feedDate": 123,
      "source": "<string>",
      "title": "<string>",
      "isFeatured": true,
      "description": "<string>",
      "imgURL": "<string>",
      "link": "<string>",
      "sourceLink": "<string>",
      "imgUrl": "<string>",
      "reactionsCount": {},
      "reactions": [
        "<string>"
      ],
      "shareURL": "<string>",
      "relatedCoins": [
        "<string>"
      ],
      "content": true,
      "bigImg": true,
      "coins": {}
    }
  ]
}
5 credits per request
Returns the list of cryptocurrency news articles with pagination.

Authorizations

X-API-KEY
string
header
required

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

Query Parameters

page
number
Example:

1

limit
number
Example:

20

from
string<date-time>

Please include the date in ISO 8601 format

Example:

"2025-08-05T13:50:38.962Z"

to
string<date-time>

Please include the date in ISO 8601 format

Example:

"2025-08-06T15:50:38.962Z"

Response

200
application/json

Get news list

The response is of type object.