# 6.4 News Search

```
GET /news/search
```

**Query Parameters**

| Parameter  | Type    | Required | Default   | Description                                               |
| ---------- | ------- | -------- | --------- | --------------------------------------------------------- |
| keyword    | string  | Yes      | -         | Search keyword (title / content / tags)                   |
| page       | integer | No       | 1         | Page number, starting from 1                              |
| page\_size | integer | No       | 20        | Items per page, max 50                                    |
| category   | integer | No       | -         | Category filter                                           |
| sort       | string  | No       | relevance | Sort order: relevance descending, publish time descending |

**Response Example**

```json
{
    "code": 0,
    "message": "success",
    "data": {
        "page": 1,
        "page_size": 20,
        "total": 86,
        "list": [
            {
                "id": "news456",
                "source_link": "https://sosovalue.xyz/research/xxx",
                "release_time": 1677151845000,
                "title": "Latest Bitcoin ETF Developments",
                "content": "<p>HTML formatted body...</p>",
                "author": "Researcher A",
                "author_description": "Crypto Analyst",
                "author_avatar_url": "https://...",
                "nick_name": "Analyst ®",
                "is_blue_verified": 1,
                "verified_type": "Business",
                "category": 3,
                "feature_image": "https://xxx.png",
                "matched_currencies": [
                    {
                    "id": "1673723677362319866",
                    "full_name": "BITCOIN",
                    "name": "BTC"
                    }
                ],
                "tags": ["ETF", "BTC"],
                "media_info": [],
                "quote_info": null,
                "type": 3,
                "highlight": {
                    "title": "<em>Bitcoin</em> ETF Latest Developments",
                    "content": "<p>...<em>Bitcoin</em> ETF ...</p>"
                }
            }
        ]
    }
}
```


---

# 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/search.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.
