Get the featured news feed by currency
Overview
🌟 Tips:
This interface supports paginated retrieval of multilingual news feeds by currency, 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/currency
Request Parameters
Parameter
Type
Required
Description
pageNum
integer
Yes
Current page number
pageSize
integer
Yes
Number of news items per page (maximum: 100)
currencyId
integer
No
Currency ID to filter news for a specific asset. If not passed, defaults to all currencies.
categoryList
array
No
List of category IDs. Default: 1,2,3,4,5,6,7,9,10
Sample Request
Sample Response
Response Fields
Field
Type
Description
code
int
0
for success, 1
for failure
msg
string
Error or message information (if any)
traceId
string
Unique trace ID for debugging and logging
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 items
News Item Fields (data.list
)
data.list
)Field
Type
Description
id
string
Unique identifier for the news item
sourceLink
string
URL of the news source
releaseTime
integer
Timestamp of news release (in milliseconds)
author
string
Name of the news author
authorDescription
string
Description of the author (e.g., their background or expertise)
authorAvatarUrl
string
URL of 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 of the feature image associated with the news
matchedCurrencies
array
List of currencies mentioned in the news item
tags
array
Keywords or tags related to the news item
multilanguageContent
array
Array containing title and content in multiple languages
mediaInfo
array
Array containing media (photos, videos, etc.) associated with the news item
nickName
string
The author's or sharer's nickname
quoteInfo
object
Additional quote-related information (e.g., impressions, likes, retweets, 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)
Note: HTML Content
The multilanguageContent field supports HTML formatting. The following HTML elements are supported:
div
,p
,span
,h1~h6
,li
,ol
,ul
,figcaption
,figure
,font
,img
,picture
,strong
,b
,a
,blockquote
,br
,table
.
Last updated