v1
latestOpenAPI 3.1.02026-07-241653251.3 MBList news articles
Retrieves a list of market news articles filtered using given parameters.
Query parameters
Sources (feeds) of news articles, options can be fetched from the response of GET /news/feeds endpoint.
Categories of news articles, options can be fetched from the response of GET /news/categories endpoint.
Categories of news articles to be excluded from result, options can be fetched from the response of GET /news/categories endpoint.
A lookback time defined as a UNIX timestamp, used to fetch articles from the given time.
Language of articles to be fetched. Format: EN (English) or PT (Portuguese)
Sorting order of news articles. Can be either popular or latest
Headers
HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.
Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.
Response
Successfully retrieved list of market news articles.
Example response
[
{
"published_on": {
"seconds": 1684928,
"nanos": 819000000
},
"image_url": "/resources/news/21/example.jpeg",
"title": "Example Title",
"url": "https://www.externalsource.com/all/article_url/",
"body": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur",
"tagsList": [
"All"
],
"language": "EN",
"up_votes": 2,
"down_votes": 5,
"categoriesList": [
"MARKET|BTC"
],
"sourceInfo": {
"name": "ExampleSource",
"img": "/images/news/default/example.png",
"language": "EN"
},
"source": "exampleSource"
}
]