> For the complete documentation index, see [llms.txt](https://tech.x2bee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tech.x2bee.com/api/back-office-api/goods-bo-api/undefined-24.md).

# 인기검색어 관리

## 인기검색어 목록 조회

> \## 기능설명\
> \* 인기검색어 목록을 조회하는 기능입니다.\
> \
> \## 상세설명\
> \* 검색엔진의 인기검색어 키워드 최대 30개를 조회합니다.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"PopularWordMgmtRequest":{"type":"object","properties":{"size":{"type":"string","default":"30","description":"조회 건 수"}}},"SearchResultResponsePopularWordMgmtResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32","description":"총건수"},"searchDataList":{"type":"array","description":"검색결과 리스트","items":{"$ref":"#/components/schemas/PopularWordMgmtResponse"}}}},"PopularWordMgmtResponse":{"type":"object","properties":{"keyword":{"type":"string","description":"키워드"},"changeType":{"type":"integer","format":"int32","description":"인기순위 증감"}}},"Response":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v1/search/popularWordMgmt/getPopularWordList":{"get":{"tags":["인기검색어 관리"],"summary":"인기검색어 목록 조회","description":"## 기능설명\n* 인기검색어 목록을 조회하는 기능입니다.\n\n## 상세설명\n* 검색엔진의 인기검색어 키워드 최대 30개를 조회합니다.\n","operationId":"getPopularWordList","parameters":[{"name":"popularWordMgmtRequest","in":"query","required":true,"schema":{"$ref":"#/components/schemas/PopularWordMgmtRequest"}},{"name":"size","in":"query","description":"조회 건 수","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SearchResultResponsePopularWordMgmtResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```
