Get the featured news feed
Overview
🌟 Tips:
This interface supports paginated retrieval of multilingual news feeds, filterable by category (e.g., news, research reports, price alerts) and language. Responses include news titles, authors, timestamps, related cryptocurrencies, multilingual content (HTML), cover images, multimedia resources, social media quotes, and engagement metrics (e.g., views, likes).
Request Specification
GET /api/v1/news/featured
Request Parameters
pageNum
integer
Yes
Current page number
pageSize
integer
Yes
Number of news items per page (maximum: 100)
categoryList
array
No
List of category IDs. Defaults to: 1,2,3,4,5,6,7,9,10
Sample Request
Sample Response
Response Fields
code
int
0
for success, 1
for failure
msg
string
Error message if any
traceId
string
Unique trace ID for debugging
data.pageNum
string
Current page number
data.pageSize
string
Number of items per page
data.totalPages
string
Total number of pages
data.total
string
Total number of news items
data.list
array
List of news item objects
News Item Fields (data.list
)
data.list
)Field
Type
Description
id
string
Unique identifier for the news item
sourceLink
string
The URL link to the source of the news
releaseTime
integer
Timestamp of the news release in milliseconds
author
string
Name of the author or source of the news
authorDescription
string
A brief description of the author (e.g., their background or expertise)
authorAvatarUrl
string
URL to the author's avatar image
category
integer
Category of the news: (1: news, 2: research, 3: institution, 4: insights, 5: macro news, 6: macro research, 7: official tweets, 9: price alert, 10: on-chain)
featureImage
string
URL to the feature image associated with the news
matchedCurrencies
array
List of currencies mentioned in the news item (e.g., BTC
, ETH
)
tags
array
Keywords or tags related to the news item (e.g., "ETF"
, "SEC"
)
multilanguageContent
array
An array containing the title and content in multiple languages
mediaInfo
array
List of media (photos, videos, etc.) associated with the news item
nickName
string
The nickname of the author or entity sharing the news
quoteInfo
object
Information about quotes, including impressions, likes, reposts, etc.
Explanation of quoteInfo
Fields
quoteInfo
FieldsField
Type
Description
impressionCount
integer
Number of views or impressions of the quoted content
likeCount
integer
Number of likes on the quoted content
replyCount
integer
Number of replies or comments to the quoted content
retweetCount
integer
Number of retweets or shares of the quoted content
mediaInfo
array
List of media (photos, videos, etc.) associated with the quote
originalUrl
string
URL to the original quote on the platform
authorAvatarUrl
string
URL to the author's avatar image
author
string
Name of the author of the quote
nickName
string
The nickname of the person sharing the quote
isBlueVerified
integer
1
if the author is blue verified (Twitter or similar platform)
verifiedType
string
Type of verification (e.g., "Business"
for a gold verification badge)
Last updated