# 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**

```json
{
    "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](/sosovalue-api-doc/6.-feeds/news.md) 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sosovalue-1.gitbook.io/sosovalue-api-doc/6.-feeds/featured-news.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
