> For the complete documentation index, see [llms.txt](https://help.deepsearch.com/dp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.deepsearch.com/dp/api/func/document/topic-search/searchtrendingtopics.md).

# SearchTrendingTopics

### Function specification

호출 시점에서 가장 최신의 이슈를 제공합니다.

```
SearchTrendingTopics(category, section, fields=None)
```

### Parameters

| Parameter | Type                     | Description                                                                                                                                                   |
| --------- | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| category  | string or list of string | <p></p><p>국내뉴스: news</p><p></p>                                                                                                                               |
| section   | string or list of string | <p>정치: politics </p><p>경제: economy </p><p>사회: society </p><p>문화: culture </p><p>세계: world </p><p>기술/IT: tech </p><p>연예: entertainment </p><p>사설: opinion </p> |
| fields    | list of string           | 결과값으로 어떤 항목을 노출한 것인지 지정한다.                                                                                                                                    |

### Result Layout&#x20;

{% content-ref url="/pages/-MX1GkD\_miwdr67HjiWD" %}
[Result:TrendingTopicsSearchResult](/dp/api/result_layout/result-trendingtopicssearchresult.md)
{% endcontent-ref %}

### Examples

```
트렌딩 토픽 검색
> SearchTrendingTopics(["news"],["economy"])
{
    "found": true,
    "data": {
        "timestamp": "2020-08-07T16:20:00.000000",
        "topics": {
            "news": {
                "economy": [
                    {
                        "uid": 54469154,
                        "uid_str": "54469154",
                        "category": "news",
                        "section": "economy",
                        "rank": 1,
                        "score": 7.7828,
                        "topic": "국내증시 연고점 재경신 코스피 2350선 마감",
                        "keywords": [
                            {
                                "keyword": "2350선",
                                "freq": 16
                            },
                            {
                                "keyword": "1만1000선",
                                "freq": 10
                            },
...
                            {
                                "keyword": "0.68%↑",
                                "freq": 1
                            }
                        ],
                        "statistics": {
                            "doc_count": 70,
                            "securities": [
                                {
                                    "exchange": "KRX",
                                    "market": "KOSPI",
                                    "symbol": "051910",
                                    "name": "LG화학",
                                    "company_rid": "110111-2207995",
                                    "business_rid": "107-81-98139",
                                    "doc_count": 2
                                },
                                {
                                    "exchange": "KRX",
                                    "market": "KOSPI",
                                    "symbol": "039490",
                                    "name": "키움증권",
                                    "company_rid": "110111-1867948",
                                    "business_rid": "107-81-76756",
                                    "doc_count": 1
                                },
                                {
                                    "exchange": "KRX",
                                    "market": "KOSDAQ",
                                    "symbol": "267790",
                                    "name": "배럴",
                                    "company_rid": "110111-4256924",
                                    "business_rid": "105-87-39951",
                                    "doc_count": 1
                                }
                            ],
                            "industries": [
                                {
                                    "label": "B06",
                                    "name": "금속 광업",
                                    "min": 0.837,
                                    "max": 1.0,
                                    "mean": 0.97664,
                                    "stddev": 0.04943,
                                    "doc_count": 11
                                },
                                {
                                    "label": "C14",
                                    "name": "의복, 의복 액세서리 및 모피제품 제조업",
                                    "min": 0.528,
                                    "max": 0.835,
                                    "mean": 0.6815,
                                    "stddev": 0.1535,
                                    "doc_count": 2
                                },
...
                                {
                                    "label": "C24",
                                    "name": "1차 금속 제조업",
                                    "min": 0.336,
                                    "max": 0.336,
                                    "mean": 0.336,
                                    "stddev": 0.0,
                                    "doc_count": 1
                                }
                            ],
                            "polarities": [
                                {
                                    "label": "0",
                                    "name": "중립",
                                    "min": 0.985,
                                    "max": 0.99,
                                    "mean": 0.9875,
                                    "stddev": 0.0025,
                                    "doc_count": 2
                                },
                                {
                                    "label": "1",
                                    "name": "긍정",
                                    "min": 0.756,
                                    "max": 0.89,
                                    "mean": 0.823,
                                    "stddev": 0.067,
                                    "doc_count": 2
                                }
                            ]
                        }


...

```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://help.deepsearch.com/dp/api/func/document/topic-search/searchtrendingtopics.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.
