> 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/economy/bok/querybankofkoreaseriesdatasimple.md).

# QueryBankOfKoreaSeriesDataSimple

### Function specification

```
QueryBankOfKoreaSeriesDataSimple(entity_ids, date_from=None, date_to=None)
```

### Parameters

한국은행 경제지표의 entity\_id 는 "BOK:\<stat\_code>.\<item\_code>" 의 형식으로 되어있습니다. 이전 QueryBankOfKoreaSeriesData 함수와는 다르게 stat\_code / item\_code 을 입력으로 받을 수 없고 오직 entity\_ids 만을 파라미터로 명시할 수 있지만, 대신 redis cache 를 사용해서 데이터 조회 속도가 한층 빠릅니다.

| Parameter   | Type                                  | Description                                                                   |
| ----------- | ------------------------------------- | ----------------------------------------------------------------------------- |
| entity\_ids | <p>string or</p><p>list of string</p> | (예) "BOK:060Y001.010101000"                                                   |
| date\_from  | date                                  | <p>데이터 조회 기간의 시작 날짜를 지정합니다.</p><p>데이터 조회 기간이 주어지지 않을 경우 전체 기간을 대상으로 합니다.</p>  |
| date\_to    | date                                  | <p>데이터 조회 기간의 마지막 날짜를 지정합니다.</p><p>데이터 조회 기간이 주어지지 않을 경우 전체 기간을 대상으로 합니다.</p> |

###

### Examples

```
> QueryBankOfKoreaSeriesDataSimple("BOK:060Y001.010101000")

...

                                  QueryBankOfKoreaSeriesDataSimple(BOK:060Y001.010101000)
entity_id             date
BOK:060Y001.010101000 1995-01-03                     13.06
                      1995-01-04                     11.63
                      1995-01-05                     10.61
                      1995-01-06                      9.28
                      1995-01-07                     10.78
...                                                    ...
                      2021-01-14                      0.49
                      2021-01-15                      0.50
                      2021-01-18                      0.51
                      2021-01-19                      0.48
                      2021-01-20                      0.48
```
