# GetOecdSeriesValues

### Function specification

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

###

### Parameters

| Parameter   | Type                                  | Description                                                      |
| ----------- | ------------------------------------- | ---------------------------------------------------------------- |
| entity\_ids | <p>string or</p><p>list of string</p> | 조회하고자 하는 경제 지표의 entity id 를 명시합니다.                               |
| date\_from  | date                                  | 데이터 조회 기간의 시작 날짜를 지정합니다. 데이터 조회 기간이 주어지지 않을 경우 전체 기간을 대상으로 합니다.  |
| date\_to    | date                                  | 데이터 조회 기간의 마지막 날짜를 지정합니다. 데이터 조회 기간이 주어지지 않을 경우 전체 기간을 대상으로 합니다. |

###

### Examples

```
>>> GetOecdSeriesValues("OECD:AEA.HRV.ACG.O.TSO2")

...

                                    GetOecdSeriesValues(OECD:AEA.HRV.ACG.O.TSO2)
entity_id               date
OECD:AEA.HRV.ACG.O.TSO2 2008-12-31                     330.0
                        2009-12-31                     323.0
                        2010-12-31                     309.0
                        2011-12-31                     273.0
                        2012-12-31                     235.0
                        2013-12-31                     236.0
                        2014-12-31                     213.0
                        2015-12-31                     217.0
                        2016-12-31                     214.0
                        2017-12-31                     238.0
                        2018-12-31                     221.0

Duration(compiler): 0.12 seconds
Duration(computing): 0.14 seconds
Duration(pods): 0.0 seconds
Duration(total): 0.26 seconds
Duration(parse): 0.0 seconds
```

```
>>> GetOecdSeriesValues(["OECD:ALFS_EMP.ESP.YW99P4L1_ST.TT.A", "OECD:FDI_FLOW_CTRY.AUT.SUB.DO.T_FA_FL.ALL.A.IMC.SGP", "OECD:FDI_FLOW_CTRY.BEL.USD.DO.T_FA_F5A.ROU.NET.IMC.BGD"], date_from=2010-01-01, date_to=2016-12-31)

...

                                      GetOecdSeriesValues([OECD:ALFS_EMP.ESP.YW99P4L1_ST.TT.A, OECD:FDI_FLOW_CTRY.AUT.SUB.DO.T_FA_FL.ALL.A.IMC.SGP, OECD:FDI_FLOW_CTRY.BEL.USD.DO.T_FA_F5A.ROU.NET.IMC.BGD], date_from=2010-01-01, date_to=2016-12-31)
entity_id                 date
OECD:ALFS_EMP.ESP.YW99... 2010-12-31                  1162.125
                          2011-12-31                  1157.800
                          2012-12-31                  1151.225
                          2013-12-31                  1105.650
                          2014-12-31                  1094.500
                          2015-12-31                  1112.900
                          2016-12-31                  1199.050
OECD:FDI_FLOW_CTRY.BEL... 2016-12-31                     0.000
```


---

# 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://help.deepsearch.com/dp/api/func/economy/oecd/getoecdseriesvalues.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.
