6.3 Featured News

GET /news/featured

Query Parameters

Parameter
Type
Required
Description

page

integer

Yes

Page number, >= 1

page_size

integer

Yes

Items per page, range 20-100

language

string

No

Response language; defaults to English

category

array[integer]

No

Category filter; comma-separated for multiple values. See 6.1 for category definitions.

Response Example

{
    "page": 1,
    "page_size": 20,
    "total": 115,
    "list": [
        {
            "id": "news123",
            "source_link": "https://sosovalue.xyz/research/xxx",
            "release_time": 1677151845000,
            "title": "Featured Article Title",
            "content": "<p>HTML formatted body...</p>",
            "author": "Author Name",
            "author_description": "Senior crypto researcher",
            "author_avatar_url": "https://...",
            "nick_name": "Author Display ®",
            "is_blue_verified": 1,
            "verified_type": "Business",
            "category": 2,
            "feature_image": "https://xxx.png",
            "matched_currencies": [...],
            "tags": ["ETF", "BTC"],
            "media_info": [
                {
                "soso_url": "https://static.xxx.com/example.jpg",
                "original_url": "",
                "short_url": "https://t.co/example",
                "type": "photo"
                }
            ],
            "quote_info": null
        }
    ]
}

Response

The featured news list item structure is largely identical to 6.1 News Feed list items. Refer to 6.1 for field definitions.

Differences from News Feed:

  • Does not include original_link, impression_count, like_count, reply_count, retweet_count, and other social engagement fields.

  • Primarily for displaying high-quality editorially curated content.

Last updated