> For the complete documentation index, see [llms.txt](https://sodex.com/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sodex.com/documentation/for-developers/api-reference/market-data-api/feeds/search.md).

# 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>"
                }
            }
        ]
    }
}
```
