@bitget-ai/getagent-skill 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +28 -0
- package/.claude-plugin/plugin.json +12 -0
- package/README.md +99 -0
- package/VERSION +1 -0
- package/bin/getagent-skill.js +140 -0
- package/package.json +45 -0
- package/skills/getagent/SKILL.md +129 -0
- package/skills/getagent/examples/btc-ema-cross-demo/README.md +61 -0
- package/skills/getagent/examples/btc-ema-cross-demo/backtest.yaml +33 -0
- package/skills/getagent/examples/btc-ema-cross-demo/manifest.yaml +94 -0
- package/skills/getagent/examples/btc-ema-cross-demo/src/main.py +88 -0
- package/skills/getagent/examples/btc-ema-cross-demo/src/strategy.py +118 -0
- package/skills/getagent/references/api/enable.md +95 -0
- package/skills/getagent/references/api/error-responses.md +77 -0
- package/skills/getagent/references/api/index.md +38 -0
- package/skills/getagent/references/api/list.md +80 -0
- package/skills/getagent/references/api/my-playbooks.md +41 -0
- package/skills/getagent/references/api/publish.md +76 -0
- package/skills/getagent/references/api/run.md +149 -0
- package/skills/getagent/references/api/upload.md +76 -0
- package/skills/getagent/references/backtest-engine.md +438 -0
- package/skills/getagent/references/package-schema.md +552 -0
- package/skills/getagent/references/sandbox-runtime.md +201 -0
- package/skills/getagent/references/sdk/backtest/catalog.md +208 -0
- package/skills/getagent/references/sdk/data/arxiv.md +41 -0
- package/skills/getagent/references/sdk/data/catalog.md +56 -0
- package/skills/getagent/references/sdk/data/commodity.md +226 -0
- package/skills/getagent/references/sdk/data/coverage.md +82 -0
- package/skills/getagent/references/sdk/data/crypto.md +2906 -0
- package/skills/getagent/references/sdk/data/currency.md +123 -0
- package/skills/getagent/references/sdk/data/derivatives.md +269 -0
- package/skills/getagent/references/sdk/data/economy.md +1348 -0
- package/skills/getagent/references/sdk/data/equity.md +2120 -0
- package/skills/getagent/references/sdk/data/etf.md +372 -0
- package/skills/getagent/references/sdk/data/famafrench.md +201 -0
- package/skills/getagent/references/sdk/data/fixedincome.md +804 -0
- package/skills/getagent/references/sdk/data/imf_utils.md +225 -0
- package/skills/getagent/references/sdk/data/index.md +216 -0
- package/skills/getagent/references/sdk/data/news.md +149 -0
- package/skills/getagent/references/sdk/data/playbook-supported.md +9871 -0
- package/skills/getagent/references/sdk/data/regulators.md +299 -0
- package/skills/getagent/references/sdk/data/sentiment.md +323 -0
- package/skills/getagent/references/sdk/data/uscongress.md +126 -0
- package/skills/getagent/references/sdk/data/web_search.md +68 -0
- package/skills/getagent/references/sdk/data/wikipedia.md +97 -0
- package/skills/getagent/references/sdk/llm/catalog.md +117 -0
- package/skills/getagent/references/sdk/runtime/catalog.md +195 -0
- package/skills/getagent/references/sdk/trade/account.md +61 -0
- package/skills/getagent/references/sdk/trade/catalog.md +35 -0
- package/skills/getagent/references/sdk/trade/contract.md +331 -0
- package/skills/getagent/references/sdk/trade/helpers.md +466 -0
- package/skills/getagent/references/sdk/trade/market.md +28 -0
- package/skills/getagent/references/sdk/trade/patterns.md +102 -0
- package/skills/getagent/references/sdk/trade/spot.md +165 -0
- package/skills/getagent/references/sdk.md +198 -0
- package/skills/getagent/scripts/validate.py +965 -0
- package/skills/getagent/scripts/version_check.sh +62 -0
|
@@ -0,0 +1,1348 @@
|
|
|
1
|
+
# Economy Data Reference
|
|
2
|
+
|
|
3
|
+
Use this file when an agent needs detailed signatures and parameter
|
|
4
|
+
rules for one DataSDK domain. All generated `getagent.data` endpoints
|
|
5
|
+
are callable through the DataSDK wrapper.
|
|
6
|
+
|
|
7
|
+
## Contents
|
|
8
|
+
- [`economy.available_indicators`](#economyavailable-indicators)
|
|
9
|
+
- [`economy.balance_of_payments`](#economybalance-of-payments)
|
|
10
|
+
- [`economy.calendar`](#economycalendar)
|
|
11
|
+
- [`economy.central_bank_holdings`](#economycentral-bank-holdings)
|
|
12
|
+
- [`economy.composite_leading_indicator`](#economycomposite-leading-indicator)
|
|
13
|
+
- [`economy.country_profile`](#economycountry-profile)
|
|
14
|
+
- [`economy.cpi`](#economycpi)
|
|
15
|
+
- [`economy.direction_of_trade`](#economydirection-of-trade)
|
|
16
|
+
- [`economy.export_destinations`](#economyexport-destinations)
|
|
17
|
+
- [`economy.fomc_documents`](#economyfomc-documents)
|
|
18
|
+
- [`economy.fred_regional`](#economyfred-regional)
|
|
19
|
+
- [`economy.fred_release_table`](#economyfred-release-table)
|
|
20
|
+
- [`economy.fred_search`](#economyfred-search)
|
|
21
|
+
- [`economy.fred_series`](#economyfred-series)
|
|
22
|
+
- [`economy.gdp.forecast`](#economygdpforecast)
|
|
23
|
+
- [`economy.gdp.nominal`](#economygdpnominal)
|
|
24
|
+
- [`economy.gdp.real`](#economygdpreal)
|
|
25
|
+
- [`economy.house_price_index`](#economyhouse-price-index)
|
|
26
|
+
- [`economy.indicators`](#economyindicators)
|
|
27
|
+
- [`economy.interest_rates`](#economyinterest-rates)
|
|
28
|
+
- [`economy.money_measures`](#economymoney-measures)
|
|
29
|
+
- [`economy.pce`](#economypce)
|
|
30
|
+
- [`economy.primary_dealer_fails`](#economyprimary-dealer-fails)
|
|
31
|
+
- [`economy.primary_dealer_positioning`](#economyprimary-dealer-positioning)
|
|
32
|
+
- [`economy.retail_prices`](#economyretail-prices)
|
|
33
|
+
- [`economy.risk_premium`](#economyrisk-premium)
|
|
34
|
+
- [`economy.share_price_index`](#economyshare-price-index)
|
|
35
|
+
- [`economy.shipping.chokepoint_info`](#economyshippingchokepoint-info)
|
|
36
|
+
- [`economy.shipping.chokepoint_volume`](#economyshippingchokepoint-volume)
|
|
37
|
+
- [`economy.shipping.port_info`](#economyshippingport-info)
|
|
38
|
+
- [`economy.shipping.port_volume`](#economyshippingport-volume)
|
|
39
|
+
- [`economy.survey.bls_search`](#economysurveybls-search)
|
|
40
|
+
- [`economy.survey.bls_series`](#economysurveybls-series)
|
|
41
|
+
- [`economy.survey.economic_conditions_chicago`](#economysurveyeconomic-conditions-chicago)
|
|
42
|
+
- [`economy.survey.inflation_expectations`](#economysurveyinflation-expectations)
|
|
43
|
+
- [`economy.survey.manufacturing_outlook_ny`](#economysurveymanufacturing-outlook-ny)
|
|
44
|
+
- [`economy.survey.manufacturing_outlook_texas`](#economysurveymanufacturing-outlook-texas)
|
|
45
|
+
- [`economy.survey.nonfarm_payrolls`](#economysurveynonfarm-payrolls)
|
|
46
|
+
- [`economy.survey.sloos`](#economysurveysloos)
|
|
47
|
+
- [`economy.survey.university_of_michigan`](#economysurveyuniversity-of-michigan)
|
|
48
|
+
- [`economy.total_factor_productivity`](#economytotal-factor-productivity)
|
|
49
|
+
- [`economy.unemployment`](#economyunemployment)
|
|
50
|
+
|
|
51
|
+
## Endpoint reference
|
|
52
|
+
|
|
53
|
+
### `economy.available_indicators`
|
|
54
|
+
|
|
55
|
+
```python
|
|
56
|
+
data.economy.available_indicators(use_cache=True, query=None, dataflows=None, keywords=None, symbol=None, provider=...)
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Summary: Available Indicators
|
|
60
|
+
|
|
61
|
+
| Field | Value |
|
|
62
|
+
|---|---|
|
|
63
|
+
| Endpoint ID | `economy.available_indicators` |
|
|
64
|
+
| HTTP | `GET` |
|
|
65
|
+
| Path | `/inner/v1/agent-data/economy/available_indicators` |
|
|
66
|
+
| Default provider | - |
|
|
67
|
+
| SDK | `supported` |
|
|
68
|
+
| Host | `supported` |
|
|
69
|
+
| Notes | - |
|
|
70
|
+
|
|
71
|
+
#### Query parameters
|
|
72
|
+
|
|
73
|
+
| Param | Required | Type | Default | Notes |
|
|
74
|
+
|---|---|---|---|---|
|
|
75
|
+
| `use_cache` | `no` | `boolean` | `true` | Whether to use cache or not, by default is True The cache of indicator symbols will persist for one week. (provider: econdb) |
|
|
76
|
+
| `query` | `no` | `string | null` | `-` | The search query string. Multiple search phrases can be separated by semicolons. Each phrase can use AND (+) and OR (|) operators, as well as quoted phrases. Semicolon separation allows commas to be used within search phrases. Multiple comma separated items allowed. (provider: imf) |
|
|
77
|
+
| `dataflows` | `no` | `string | array | null` | `-` | accepts array values List of IMF dataflow IDs to filter the indicators. Use semicolons to separate multiple dataflow IDs. Multiple comma separated items allowed. (provider: imf) |
|
|
78
|
+
| `keywords` | `no` | `string | array | null` | `-` | accepts array values List of keywords to filter results. Each keyword is a single word that must appear in the indicator's label or description. Keywords prefixed with 'not' will exclude indicators containing that word (e.g., 'not USD' excludes indicators with 'USD' in them). Multiple comma separated items allowed. (provider: imf) |
|
|
79
|
+
| `symbol` | `no` | `string | null` | `-` | Dummy field to allow grouping by symbol. Multiple comma separated items allowed. (provider: imf) |
|
|
80
|
+
| `provider` | `yes` | `string` | `-` | enum: econdb, imf |
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
### `economy.balance_of_payments`
|
|
85
|
+
|
|
86
|
+
```python
|
|
87
|
+
data.economy.balance_of_payments(start_time=None, end_time=None, report_type='main', frequency='monthly', country=None, provider=...)
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Summary: Balance Of Payments
|
|
91
|
+
|
|
92
|
+
| Field | Value |
|
|
93
|
+
|---|---|
|
|
94
|
+
| Endpoint ID | `economy.balance_of_payments` |
|
|
95
|
+
| HTTP | `GET` |
|
|
96
|
+
| Path | `/inner/v1/agent-data/economy/balance_of_payments` |
|
|
97
|
+
| Default provider | - |
|
|
98
|
+
| SDK | `supported` |
|
|
99
|
+
| Host | `supported` |
|
|
100
|
+
| Notes | - |
|
|
101
|
+
|
|
102
|
+
#### Query parameters
|
|
103
|
+
|
|
104
|
+
| Param | Required | Type | Default | Notes |
|
|
105
|
+
|---|---|---|---|---|
|
|
106
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
107
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
108
|
+
| `report_type` | `no` | `string` | `main` | enum: main, summary, services, investment_income, direct_investment, portfolio_investment, other_investment The report type, the level of detail in the data. (provider: ecb) |
|
|
109
|
+
| `frequency` | `no` | `string` | `monthly` | enum: monthly, quarterly The frequency of the data. Monthly is valid only for ['main', 'summary']. (provider: ecb) |
|
|
110
|
+
| `country` | `no` | `string` | `-` | The country/region of the data. This parameter will override the 'report_type' parameter. (provider: ecb); The country to get data. Enter as a 3-letter ISO country code, default is USA. (provider: fred) |
|
|
111
|
+
| `provider` | `yes` | `string` | `-` | enum: ecb, fred |
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
### `economy.calendar`
|
|
116
|
+
|
|
117
|
+
```python
|
|
118
|
+
data.economy.calendar(start_time=None, end_time=None, release_id=None, country=None, importance=None, group=None, calendar_id=None, provider=...)
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Summary: Calendar
|
|
122
|
+
|
|
123
|
+
| Field | Value |
|
|
124
|
+
|---|---|
|
|
125
|
+
| Endpoint ID | `economy.calendar` |
|
|
126
|
+
| HTTP | `GET` |
|
|
127
|
+
| Path | `/inner/v1/agent-data/economy/calendar` |
|
|
128
|
+
| Default provider | - |
|
|
129
|
+
| SDK | `supported` |
|
|
130
|
+
| Host | `supported` |
|
|
131
|
+
| Notes | - |
|
|
132
|
+
|
|
133
|
+
#### Query parameters
|
|
134
|
+
|
|
135
|
+
| Param | Required | Type | Default | Notes |
|
|
136
|
+
|---|---|---|---|---|
|
|
137
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
138
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
139
|
+
| `release_id` | `no` | `integer | null` | `-` | Filter by release ID. (provider: fred) |
|
|
140
|
+
| `country` | `no` | `string | null` | `-` | Country of the event. Accepts country names, ISO 3166-1 alpha-2/alpha-3 codes. Multiple comma-separated values allowed. Multiple comma separated items allowed. (provider: nasdaq); Country of the event. Multiple comma separated items allowed. (provider: tradingeconomics) |
|
|
141
|
+
| `importance` | `no` | `string | null` | `-` | Importance of the event. (provider: tradingeconomics) |
|
|
142
|
+
| `group` | `no` | `string | null` | `-` | Grouping of events. (provider: tradingeconomics) |
|
|
143
|
+
| `calendar_id` | `no` | `integer | string | null` | `-` | Get events by TradingEconomics Calendar ID. Multiple comma separated items allowed. (provider: tradingeconomics) |
|
|
144
|
+
| `provider` | `yes` | `string` | `-` | enum: fmp, fred, nasdaq, tradingeconomics |
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
### `economy.central_bank_holdings`
|
|
149
|
+
|
|
150
|
+
```python
|
|
151
|
+
data.economy.central_bank_holdings(date=None, holding_type='all_treasury', summary=False, cusip=None, wam=False, monthly=False, provider='federal_reserve')
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Summary: Central Bank Holdings
|
|
155
|
+
|
|
156
|
+
| Field | Value |
|
|
157
|
+
|---|---|
|
|
158
|
+
| Endpoint ID | `economy.central_bank_holdings` |
|
|
159
|
+
| HTTP | `GET` |
|
|
160
|
+
| Path | `/inner/v1/agent-data/economy/central_bank_holdings` |
|
|
161
|
+
| Default provider | `federal_reserve` |
|
|
162
|
+
| SDK | `supported` |
|
|
163
|
+
| Host | `supported` |
|
|
164
|
+
| Notes | - |
|
|
165
|
+
|
|
166
|
+
#### Query parameters
|
|
167
|
+
|
|
168
|
+
| Param | Required | Type | Default | Notes |
|
|
169
|
+
|---|---|---|---|---|
|
|
170
|
+
| `date` | `no` | `string | null` | `-` | A specific date to get data for. |
|
|
171
|
+
| `holding_type` | `no` | `string` | `all_treasury` | Type of holdings to return. (provider: federal_reserve) |
|
|
172
|
+
| `summary` | `no` | `boolean` | `false` | If True, returns historical weekly summary by holding type. This parameter takes priority over other parameters. (provider: federal_reserve) |
|
|
173
|
+
| `cusip` | `no` | `string | null` | `-` | Multiple comma separated items allowed. |
|
|
174
|
+
| `wam` | `no` | `boolean` | `false` | If True, returns weighted average maturity aggregated by agency or treasury securities. This parameter takes priority over `holding_type`, `cusip`, and `monthly`. (provider: federal_reserve) |
|
|
175
|
+
| `monthly` | `no` | `boolean` | `false` | If True, returns historical data for all Treasury securities at a monthly interval. This parameter takes priority over other parameters, except `wam`. Only valid when `holding_type` is set to: 'all_treasury', 'bills', 'notesbonds', 'frn', 'tips'. (provider: federal_reserve) |
|
|
176
|
+
| `provider` | `no` | `string` | `federal_reserve` | - |
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
### `economy.composite_leading_indicator`
|
|
181
|
+
|
|
182
|
+
```python
|
|
183
|
+
data.economy.composite_leading_indicator(start_time=None, end_time=None, country='g20', adjustment='amplitude', growth_rate=False, provider='oecd')
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
Summary: Composite Leading Indicator
|
|
187
|
+
|
|
188
|
+
| Field | Value |
|
|
189
|
+
|---|---|
|
|
190
|
+
| Endpoint ID | `economy.composite_leading_indicator` |
|
|
191
|
+
| HTTP | `GET` |
|
|
192
|
+
| Path | `/inner/v1/agent-data/economy/composite_leading_indicator` |
|
|
193
|
+
| Default provider | `oecd` |
|
|
194
|
+
| SDK | `supported` |
|
|
195
|
+
| Host | `supported` |
|
|
196
|
+
| Notes | - |
|
|
197
|
+
|
|
198
|
+
#### Query parameters
|
|
199
|
+
|
|
200
|
+
| Param | Required | Type | Default | Notes |
|
|
201
|
+
|---|---|---|---|---|
|
|
202
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
203
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
204
|
+
| `country` | `no` | `string` | `g20` | Country to get the CLI for, default is G20. Multiple comma separated items allowed. (provider: oecd) |
|
|
205
|
+
| `adjustment` | `no` | `string` | `amplitude` | Adjustment of the data, either 'amplitude' or 'normalized'. Default is amplitude. (provider: oecd) |
|
|
206
|
+
| `growth_rate` | `no` | `boolean` | `false` | Return the 1-year growth rate (%) of the CLI, default is False. (provider: oecd) |
|
|
207
|
+
| `provider` | `no` | `string` | `oecd` | - |
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
|
|
211
|
+
### `economy.country_profile`
|
|
212
|
+
|
|
213
|
+
```python
|
|
214
|
+
data.economy.country_profile(country=..., latest=True, use_cache=True, provider='econdb')
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
Summary: Country Profile
|
|
218
|
+
|
|
219
|
+
| Field | Value |
|
|
220
|
+
|---|---|
|
|
221
|
+
| Endpoint ID | `economy.country_profile` |
|
|
222
|
+
| HTTP | `GET` |
|
|
223
|
+
| Path | `/inner/v1/agent-data/economy/country_profile` |
|
|
224
|
+
| Default provider | `econdb` |
|
|
225
|
+
| SDK | `supported` |
|
|
226
|
+
| Host | `supported` |
|
|
227
|
+
| Notes | - |
|
|
228
|
+
|
|
229
|
+
#### Query parameters
|
|
230
|
+
|
|
231
|
+
| Param | Required | Type | Default | Notes |
|
|
232
|
+
|---|---|---|---|---|
|
|
233
|
+
| `country` | `yes` | `string` | `-` | The country to get data. Multiple comma separated items allowed for provider(s): econdb. |
|
|
234
|
+
| `latest` | `no` | `boolean` | `true` | If True, return only the latest data. If False, return all available data for each indicator. (provider: econdb) |
|
|
235
|
+
| `use_cache` | `no` | `boolean` | `true` | If True, the request will be cached for one day.Using cache is recommended to avoid needlessly requesting the same data. (provider: econdb) |
|
|
236
|
+
| `provider` | `no` | `string` | `econdb` | - |
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
240
|
+
### `economy.cpi`
|
|
241
|
+
|
|
242
|
+
```python
|
|
243
|
+
data.economy.cpi(start_time=None, end_time=None, country='united_states', transform='yoy', frequency='monthly', harmonized=False, expenditure='total', limit=None, provider=...)
|
|
244
|
+
```
|
|
245
|
+
|
|
246
|
+
Summary: Cpi
|
|
247
|
+
|
|
248
|
+
| Field | Value |
|
|
249
|
+
|---|---|
|
|
250
|
+
| Endpoint ID | `economy.cpi` |
|
|
251
|
+
| HTTP | `GET` |
|
|
252
|
+
| Path | `/inner/v1/agent-data/economy/cpi` |
|
|
253
|
+
| Default provider | - |
|
|
254
|
+
| SDK | `supported` |
|
|
255
|
+
| Host | `supported` |
|
|
256
|
+
| Notes | - |
|
|
257
|
+
|
|
258
|
+
#### Query parameters
|
|
259
|
+
|
|
260
|
+
| Param | Required | Type | Default | Notes |
|
|
261
|
+
|---|---|---|---|---|
|
|
262
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
263
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
264
|
+
| `country` | `no` | `string` | `united_states` | The country to get data. Multiple comma separated items allowed for provider(s): fred, imf, oecd. |
|
|
265
|
+
| `transform` | `no` | `string` | `yoy` | Transformation of the CPI data. |
|
|
266
|
+
| `frequency` | `no` | `string` | `monthly` | enum: annual, quarter, monthly The frequency of the data. |
|
|
267
|
+
| `harmonized` | `no` | `boolean` | `false` | If true, returns harmonized data. |
|
|
268
|
+
| `expenditure` | `no` | `string` | `total` | Expenditure component of CPI. (provider: imf, oecd) |
|
|
269
|
+
| `limit` | `no` | `integer | null` | `-` | Maximum number of records to retrieve per series and country. If None, retrieves all available records. (provider: imf) |
|
|
270
|
+
| `provider` | `yes` | `string` | `-` | enum: fred, imf, oecd |
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
### `economy.direction_of_trade`
|
|
275
|
+
|
|
276
|
+
```python
|
|
277
|
+
data.economy.direction_of_trade(start_time=None, end_time=None, country=None, counterpart=None, direction='balance', frequency='month', limit=None, provider='imf')
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
Summary: Direction Of Trade
|
|
281
|
+
|
|
282
|
+
| Field | Value |
|
|
283
|
+
|---|---|
|
|
284
|
+
| Endpoint ID | `economy.direction_of_trade` |
|
|
285
|
+
| HTTP | `GET` |
|
|
286
|
+
| Path | `/inner/v1/agent-data/economy/direction_of_trade` |
|
|
287
|
+
| Default provider | `imf` |
|
|
288
|
+
| SDK | `supported` |
|
|
289
|
+
| Host | `supported` |
|
|
290
|
+
| Notes | - |
|
|
291
|
+
|
|
292
|
+
#### Query parameters
|
|
293
|
+
|
|
294
|
+
| Param | Required | Type | Default | Notes |
|
|
295
|
+
|---|---|---|---|---|
|
|
296
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
297
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
298
|
+
| `country` | `no` | `string | null` | `-` | The country to get data. None is an equiavlent to 'all'. If 'all' is used, the counterpart field cannot be 'all'. Multiple comma separated items allowed for provider(s): imf. |
|
|
299
|
+
| `counterpart` | `no` | `string | null` | `-` | Counterpart country to the trade. None is an equiavlent to 'all'. If 'all' is used, the country field cannot be 'all'. Multiple comma separated items allowed for provider(s): imf. |
|
|
300
|
+
| `direction` | `no` | `string` | `balance` | Trade direction. Use 'all' to get all data for this dimension. |
|
|
301
|
+
| `frequency` | `no` | `string` | `month` | The frequency of the data. |
|
|
302
|
+
| `limit` | `no` | `integer | null` | `-` | Limit the number of results returned, the most recent data points first. (provider: imf) |
|
|
303
|
+
| `provider` | `no` | `string` | `imf` | - |
|
|
304
|
+
|
|
305
|
+
---
|
|
306
|
+
|
|
307
|
+
### `economy.export_destinations`
|
|
308
|
+
|
|
309
|
+
```python
|
|
310
|
+
data.economy.export_destinations(country=..., provider='econdb')
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
Summary: Export Destinations
|
|
314
|
+
|
|
315
|
+
| Field | Value |
|
|
316
|
+
|---|---|
|
|
317
|
+
| Endpoint ID | `economy.export_destinations` |
|
|
318
|
+
| HTTP | `GET` |
|
|
319
|
+
| Path | `/inner/v1/agent-data/economy/export_destinations` |
|
|
320
|
+
| Default provider | `econdb` |
|
|
321
|
+
| SDK | `supported` |
|
|
322
|
+
| Host | `supported` |
|
|
323
|
+
| Notes | - |
|
|
324
|
+
|
|
325
|
+
#### Query parameters
|
|
326
|
+
|
|
327
|
+
| Param | Required | Type | Default | Notes |
|
|
328
|
+
|---|---|---|---|---|
|
|
329
|
+
| `country` | `yes` | `string` | `-` | The country to get data. Multiple comma separated items allowed for provider(s): econdb. |
|
|
330
|
+
| `provider` | `no` | `string` | `econdb` | - |
|
|
331
|
+
|
|
332
|
+
---
|
|
333
|
+
|
|
334
|
+
### `economy.fomc_documents`
|
|
335
|
+
|
|
336
|
+
```python
|
|
337
|
+
data.economy.fomc_documents(year=None, document_type=None, provider='federal_reserve')
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
Summary: Fomc Documents
|
|
341
|
+
|
|
342
|
+
| Field | Value |
|
|
343
|
+
|---|---|
|
|
344
|
+
| Endpoint ID | `economy.fomc_documents` |
|
|
345
|
+
| HTTP | `GET` |
|
|
346
|
+
| Path | `/inner/v1/agent-data/economy/fomc_documents` |
|
|
347
|
+
| Default provider | `federal_reserve` |
|
|
348
|
+
| SDK | `supported` |
|
|
349
|
+
| Host | `supported` |
|
|
350
|
+
| Notes | - |
|
|
351
|
+
|
|
352
|
+
#### Query parameters
|
|
353
|
+
|
|
354
|
+
| Param | Required | Type | Default | Notes |
|
|
355
|
+
|---|---|---|---|---|
|
|
356
|
+
| `year` | `no` | `integer | null` | `-` | The year of FOMC documents to retrieve. If None, all years since 1959 are returned. (provider: federal_reserve) |
|
|
357
|
+
| `document_type` | `no` | `string | null` | `-` | Filter by document type. Default is all. Choose from: all, monetary_policy, minutes, projections, materials, press_release, press_conference, agenda, transcript, speaker_key, beige_book, teal_book, green_book, blue_book, red_book (provider: federal_reserve) |
|
|
358
|
+
| `provider` | `no` | `string` | `federal_reserve` | - |
|
|
359
|
+
|
|
360
|
+
---
|
|
361
|
+
|
|
362
|
+
### `economy.fred_regional`
|
|
363
|
+
|
|
364
|
+
```python
|
|
365
|
+
data.economy.fred_regional(symbol=..., start_time=None, end_time=None, limit=100000, is_series_group=False, region_type=None, season='nsa', units=None, frequency=None, aggregation_method='eop', transform=None, provider='fred')
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
Summary: Fred Regional
|
|
369
|
+
|
|
370
|
+
| Field | Value |
|
|
371
|
+
|---|---|
|
|
372
|
+
| Endpoint ID | `economy.fred_regional` |
|
|
373
|
+
| HTTP | `GET` |
|
|
374
|
+
| Path | `/inner/v1/agent-data/economy/fred_regional` |
|
|
375
|
+
| Default provider | `fred` |
|
|
376
|
+
| SDK | `supported` |
|
|
377
|
+
| Host | `supported` |
|
|
378
|
+
| Notes | - |
|
|
379
|
+
|
|
380
|
+
#### Query parameters
|
|
381
|
+
|
|
382
|
+
| Param | Required | Type | Default | Notes |
|
|
383
|
+
|---|---|---|---|---|
|
|
384
|
+
| `symbol` | `yes` | `string` | `-` | Symbol to get data for.; For this function, it is the series_group ID or series ID. If the symbol provided is for a series_group, set the `is_series_group` parameter to True. Not all series that are in FRED have geographical data. (provider: fred) |
|
|
385
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
386
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
387
|
+
| `limit` | `no` | `integer | null` | `100000` | The number of data entries to return. |
|
|
388
|
+
| `is_series_group` | `no` | `boolean` | `false` | When True, the symbol provided is for a series_group, else it is for a series ID. (provider: fred) |
|
|
389
|
+
| `region_type` | `no` | `string | null` | `-` | The type of regional data. Parameter is only valid when `is_series_group` is True. (provider: fred) |
|
|
390
|
+
| `season` | `no` | `string` | `nsa` | The seasonal adjustments to the data. Parameter is only valid when `is_series_group` is True. (provider: fred) |
|
|
391
|
+
| `units` | `no` | `string | null` | `-` | The units of the data. This should match the units returned from searching by series ID. An incorrect field will not necessarily return an error. Parameter is only valid when `is_series_group` is True. (provider: fred) |
|
|
392
|
+
| `frequency` | `no` | `string | null` | `-` | Frequency aggregation to convert high frequency data to lower frequency. None = No change a = Annual q = Quarterly m = Monthly w = Weekly d = Daily wef = Weekly, Ending Friday weth = Weekly, Ending Thursday wew = Weekly, Ending Wednesday wetu = Weekly, Ending Tuesday wem = Weekly, Ending Monday wesu = Weekly, Ending Sunday wesa = Weekly, Ending Saturday bwew = Biweekly, Ending Wednesday bwem = Biweekly, Ending Monday (provider: fred) |
|
|
393
|
+
| `aggregation_method` | `no` | `string | null` | `eop` | A key that indicates the aggregation method used for frequency aggregation. This parameter has no affect if the frequency parameter is not set. avg = Average sum = Sum eop = End of Period (provider: fred) |
|
|
394
|
+
| `transform` | `no` | `string | null` | `-` | Transformation type None = No transformation chg = Change ch1 = Change from Year Ago pch = Percent Change pc1 = Percent Change from Year Ago pca = Compounded Annual Rate of Change cch = Continuously Compounded Rate of Change cca = Continuously Compounded Annual Rate of Change log = Natural Log (provider: fred) |
|
|
395
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
396
|
+
|
|
397
|
+
---
|
|
398
|
+
|
|
399
|
+
### `economy.fred_release_table`
|
|
400
|
+
|
|
401
|
+
```python
|
|
402
|
+
data.economy.fred_release_table(release_id=..., element_id=None, date=None, provider='fred')
|
|
403
|
+
```
|
|
404
|
+
|
|
405
|
+
Summary: Fred Release Table
|
|
406
|
+
|
|
407
|
+
| Field | Value |
|
|
408
|
+
|---|---|
|
|
409
|
+
| Endpoint ID | `economy.fred_release_table` |
|
|
410
|
+
| HTTP | `GET` |
|
|
411
|
+
| Path | `/inner/v1/agent-data/economy/fred_release_table` |
|
|
412
|
+
| Default provider | `fred` |
|
|
413
|
+
| SDK | `supported` |
|
|
414
|
+
| Host | `supported` |
|
|
415
|
+
| Notes | - |
|
|
416
|
+
|
|
417
|
+
#### Query parameters
|
|
418
|
+
|
|
419
|
+
| Param | Required | Type | Default | Notes |
|
|
420
|
+
|---|---|---|---|---|
|
|
421
|
+
| `release_id` | `yes` | `string` | `-` | The ID of the release. Use `fred_search` to find releases. |
|
|
422
|
+
| `element_id` | `no` | `string | null` | `-` | The element ID of a specific table in the release. |
|
|
423
|
+
| `date` | `no` | `string | null` | `-` | A specific date to get data for. Multiple comma separated items allowed for provider(s): fred. |
|
|
424
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
425
|
+
|
|
426
|
+
---
|
|
427
|
+
|
|
428
|
+
### `economy.fred_search`
|
|
429
|
+
|
|
430
|
+
```python
|
|
431
|
+
data.economy.fred_search(query=None, search_type='full_text', release_id=None, limit=None, offset=0, order_by='observation_end', sort_order='desc', filter_variable=None, filter_value=None, tag_names=None, exclude_tag_names=None, series_id=None, provider='fred')
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
Summary: Fred Search
|
|
435
|
+
|
|
436
|
+
| Field | Value |
|
|
437
|
+
|---|---|
|
|
438
|
+
| Endpoint ID | `economy.fred_search` |
|
|
439
|
+
| HTTP | `GET` |
|
|
440
|
+
| Path | `/inner/v1/agent-data/economy/fred_search` |
|
|
441
|
+
| Default provider | `fred` |
|
|
442
|
+
| SDK | `supported` |
|
|
443
|
+
| Host | `supported` |
|
|
444
|
+
| Notes | - |
|
|
445
|
+
|
|
446
|
+
#### Query parameters
|
|
447
|
+
|
|
448
|
+
| Param | Required | Type | Default | Notes |
|
|
449
|
+
|---|---|---|---|---|
|
|
450
|
+
| `query` | `no` | `string | null` | `-` | The search word(s). |
|
|
451
|
+
| `search_type` | `no` | `string` | `full_text` | enum: full_text, series_id, release The type of search to perform. Automatically set to 'release' when a 'release_id' is provided. (provider: fred) |
|
|
452
|
+
| `release_id` | `no` | `integer | null` | `-` | A specific release ID to target. (provider: fred) |
|
|
453
|
+
| `limit` | `no` | `integer | null` | `-` | The number of data entries to return. (1-1000) (provider: fred) |
|
|
454
|
+
| `offset` | `no` | `integer | null` | `0` | Offset the results in conjunction with limit. This parameter is ignored When search_type is 'release'. (provider: fred) |
|
|
455
|
+
| `order_by` | `no` | `string` | `observation_end` | enum: search_rank, series_id, title, units, frequency, seasonal_adjustment, realtime_start, realtime_end, last_updated, observation_start, observation_end, popularity, group_popularity Order the results by a specific attribute. The default is 'observation_end'. (provider: fred) |
|
|
456
|
+
| `sort_order` | `no` | `string` | `desc` | Sort the 'order_by' item in ascending or descending order. The default is 'desc'. (provider: fred) |
|
|
457
|
+
| `filter_variable` | `no` | `string | null` | `-` | Filter by an attribute. (provider: fred) |
|
|
458
|
+
| `filter_value` | `no` | `string | null` | `-` | String value to filter the variable by. Used in conjunction with filter_variable. This parameter is ignored when search_type is 'release'. (provider: fred) |
|
|
459
|
+
| `tag_names` | `no` | `string | null` | `-` | A semicolon delimited list of tag names that series match all of. Example: 'japan;imports' This parameter is ignored when search_type is 'release'. Multiple comma separated items allowed. (provider: fred) |
|
|
460
|
+
| `exclude_tag_names` | `no` | `string | null` | `-` | A semicolon delimited list of tag names that series match none of. Example: 'imports;services'. Requires that variable tag_names also be set to limit the number of matching series. This parameter is ignored when search_type is 'release'. Multiple comma separated items allowed. (provider: fred) |
|
|
461
|
+
| `series_id` | `no` | `string | null` | `-` | A FRED Series ID to return series group information for. This returns the required information to query for regional data. Not all series that are in FRED have geographical data. Entering a value for series_id will override all other parameters. Multiple series_ids can be separated by commas. (provider: fred) |
|
|
462
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
463
|
+
|
|
464
|
+
---
|
|
465
|
+
|
|
466
|
+
### `economy.fred_series`
|
|
467
|
+
|
|
468
|
+
```python
|
|
469
|
+
data.economy.fred_series(symbol=..., start_time=None, end_time=None, limit=100000, frequency=None, aggregation_method='eop', transform=None, all_pages=False, sleep=1.0, provider=...)
|
|
470
|
+
```
|
|
471
|
+
|
|
472
|
+
Summary: Fred Series
|
|
473
|
+
|
|
474
|
+
| Field | Value |
|
|
475
|
+
|---|---|
|
|
476
|
+
| Endpoint ID | `economy.fred_series` |
|
|
477
|
+
| HTTP | `GET` |
|
|
478
|
+
| Path | `/inner/v1/agent-data/economy/fred_series` |
|
|
479
|
+
| Default provider | - |
|
|
480
|
+
| SDK | `supported` |
|
|
481
|
+
| Host | `supported` |
|
|
482
|
+
| Notes | Replacement target for future data.macro.* facade work. |
|
|
483
|
+
|
|
484
|
+
#### Query parameters
|
|
485
|
+
|
|
486
|
+
| Param | Required | Type | Default | Notes |
|
|
487
|
+
|---|---|---|---|---|
|
|
488
|
+
| `symbol` | `yes` | `string` | `-` | Symbol to get data for. Multiple comma separated items allowed for provider(s): fred. |
|
|
489
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
490
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
491
|
+
| `limit` | `no` | `integer | null` | `100000` | The number of data entries to return. |
|
|
492
|
+
| `frequency` | `no` | `string | null` | `-` | Frequency aggregation to convert high frequency data to lower frequency. None = No change a = Annual q = Quarterly m = Monthly w = Weekly d = Daily wef = Weekly, Ending Friday weth = Weekly, Ending Thursday wew = Weekly, Ending Wednesday wetu = Weekly, Ending Tuesday wem = Weekly, Ending Monday wesu = Weekly, Ending Sunday wesa = Weekly, Ending Saturday bwew = Biweekly, Ending Wednesday bwem = Biweekly, Ending Monday (provider: fred) |
|
|
493
|
+
| `aggregation_method` | `no` | `string | null` | `eop` | A key that indicates the aggregation method used for frequency aggregation. This parameter has no affect if the frequency parameter is not set. avg = Average sum = Sum eop = End of Period (provider: fred) |
|
|
494
|
+
| `transform` | `no` | `string | null` | `-` | Transformation type None = No transformation chg = Change ch1 = Change from Year Ago pch = Percent Change pc1 = Percent Change from Year Ago pca = Compounded Annual Rate of Change cch = Continuously Compounded Rate of Change cca = Continuously Compounded Annual Rate of Change log = Natural Log (provider: fred) |
|
|
495
|
+
| `all_pages` | `no` | `boolean | null` | `false` | Returns all pages of data from the API call at once. (provider: intrinio) |
|
|
496
|
+
| `sleep` | `no` | `number | null` | `1.0` | Time to sleep between requests to avoid rate limiting. (provider: intrinio) |
|
|
497
|
+
| `provider` | `yes` | `string` | `-` | enum: fred, intrinio |
|
|
498
|
+
|
|
499
|
+
---
|
|
500
|
+
|
|
501
|
+
### `economy.gdp.forecast`
|
|
502
|
+
|
|
503
|
+
```python
|
|
504
|
+
data.economy.gdp.forecast(start_time=None, end_time=None, country='all', frequency='annual', units='volume', provider='oecd')
|
|
505
|
+
```
|
|
506
|
+
|
|
507
|
+
Summary: Forecast
|
|
508
|
+
|
|
509
|
+
| Field | Value |
|
|
510
|
+
|---|---|
|
|
511
|
+
| Endpoint ID | `economy.gdp.forecast` |
|
|
512
|
+
| HTTP | `GET` |
|
|
513
|
+
| Path | `/inner/v1/agent-data/economy/gdp/forecast` |
|
|
514
|
+
| Default provider | `oecd` |
|
|
515
|
+
| SDK | `supported` |
|
|
516
|
+
| Host | `supported` |
|
|
517
|
+
| Notes | - |
|
|
518
|
+
|
|
519
|
+
#### Query parameters
|
|
520
|
+
|
|
521
|
+
| Param | Required | Type | Default | Notes |
|
|
522
|
+
|---|---|---|---|---|
|
|
523
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
524
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
525
|
+
| `country` | `no` | `string` | `all` | Country, or countries, to get forward GDP projections for. Default is all. Multiple comma separated items allowed. (provider: oecd) |
|
|
526
|
+
| `frequency` | `no` | `string` | `annual` | Frequency of the data, default is annual. (provider: oecd) |
|
|
527
|
+
| `units` | `no` | `string` | `volume` | Units of the data, default is volume (chain linked volume, 2015). 'current_prices', 'volume', and 'capita' are expressed in USD; 'growth' as a percent; 'deflator' as an index. (provider: oecd) |
|
|
528
|
+
| `provider` | `no` | `string` | `oecd` | - |
|
|
529
|
+
|
|
530
|
+
---
|
|
531
|
+
|
|
532
|
+
### `economy.gdp.nominal`
|
|
533
|
+
|
|
534
|
+
```python
|
|
535
|
+
data.economy.gdp.nominal(start_time=None, end_time=None, country='united_states', use_cache=True, frequency='quarter', units='level', price_base='current_prices', provider=...)
|
|
536
|
+
```
|
|
537
|
+
|
|
538
|
+
Summary: Nominal
|
|
539
|
+
|
|
540
|
+
| Field | Value |
|
|
541
|
+
|---|---|
|
|
542
|
+
| Endpoint ID | `economy.gdp.nominal` |
|
|
543
|
+
| HTTP | `GET` |
|
|
544
|
+
| Path | `/inner/v1/agent-data/economy/gdp/nominal` |
|
|
545
|
+
| Default provider | - |
|
|
546
|
+
| SDK | `supported` |
|
|
547
|
+
| Host | `supported` |
|
|
548
|
+
| Notes | - |
|
|
549
|
+
|
|
550
|
+
#### Query parameters
|
|
551
|
+
|
|
552
|
+
| Param | Required | Type | Default | Notes |
|
|
553
|
+
|---|---|---|---|---|
|
|
554
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
555
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
556
|
+
| `country` | `no` | `string` | `united_states` | The country to get data.Use 'all' to get data for all available countries. (provider: econdb, oecd) |
|
|
557
|
+
| `use_cache` | `no` | `boolean` | `true` | If True, the request will be cached for one day. Using cache is recommended to avoid needlessly requesting the same data. (provider: econdb) |
|
|
558
|
+
| `frequency` | `no` | `string` | `quarter` | enum: quarter, annual Frequency of the data. (provider: oecd) |
|
|
559
|
+
| `units` | `no` | `string` | `level` | enum: level, index, capita The unit of measurement for the data.Both 'level' and 'capita' (per) are measured in USD. (provider: oecd) |
|
|
560
|
+
| `price_base` | `no` | `string` | `current_prices` | enum: current_prices, volume Price base for the data, volume is chain linked volume. (provider: oecd) |
|
|
561
|
+
| `provider` | `yes` | `string` | `-` | enum: econdb, oecd |
|
|
562
|
+
|
|
563
|
+
---
|
|
564
|
+
|
|
565
|
+
### `economy.gdp.real`
|
|
566
|
+
|
|
567
|
+
```python
|
|
568
|
+
data.economy.gdp.real(start_time=None, end_time=None, country='united_states', use_cache=True, frequency='quarter', provider=...)
|
|
569
|
+
```
|
|
570
|
+
|
|
571
|
+
Summary: Real
|
|
572
|
+
|
|
573
|
+
| Field | Value |
|
|
574
|
+
|---|---|
|
|
575
|
+
| Endpoint ID | `economy.gdp.real` |
|
|
576
|
+
| HTTP | `GET` |
|
|
577
|
+
| Path | `/inner/v1/agent-data/economy/gdp/real` |
|
|
578
|
+
| Default provider | - |
|
|
579
|
+
| SDK | `supported` |
|
|
580
|
+
| Host | `supported` |
|
|
581
|
+
| Notes | - |
|
|
582
|
+
|
|
583
|
+
#### Query parameters
|
|
584
|
+
|
|
585
|
+
| Param | Required | Type | Default | Notes |
|
|
586
|
+
|---|---|---|---|---|
|
|
587
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
588
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
589
|
+
| `country` | `no` | `string` | `united_states` | The country to get data.Use 'all' to get data for all available countries. (provider: econdb, oecd) |
|
|
590
|
+
| `use_cache` | `no` | `boolean` | `true` | If True, the request will be cached for one day. Using cache is recommended to avoid needlessly requesting the same data. (provider: econdb) |
|
|
591
|
+
| `frequency` | `no` | `string` | `quarter` | enum: quarter, annual Frequency of the data. (provider: oecd) |
|
|
592
|
+
| `provider` | `yes` | `string` | `-` | enum: econdb, oecd |
|
|
593
|
+
|
|
594
|
+
---
|
|
595
|
+
|
|
596
|
+
### `economy.house_price_index`
|
|
597
|
+
|
|
598
|
+
```python
|
|
599
|
+
data.economy.house_price_index(start_time=None, end_time=None, country='united_states', frequency='quarter', transform='index', provider='oecd')
|
|
600
|
+
```
|
|
601
|
+
|
|
602
|
+
Summary: House Price Index
|
|
603
|
+
|
|
604
|
+
| Field | Value |
|
|
605
|
+
|---|---|
|
|
606
|
+
| Endpoint ID | `economy.house_price_index` |
|
|
607
|
+
| HTTP | `GET` |
|
|
608
|
+
| Path | `/inner/v1/agent-data/economy/house_price_index` |
|
|
609
|
+
| Default provider | `oecd` |
|
|
610
|
+
| SDK | `supported` |
|
|
611
|
+
| Host | `supported` |
|
|
612
|
+
| Notes | - |
|
|
613
|
+
|
|
614
|
+
#### Query parameters
|
|
615
|
+
|
|
616
|
+
| Param | Required | Type | Default | Notes |
|
|
617
|
+
|---|---|---|---|---|
|
|
618
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
619
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
620
|
+
| `country` | `no` | `string` | `united_states` | The country to get data. Multiple comma separated items allowed for provider(s): oecd. |
|
|
621
|
+
| `frequency` | `no` | `string` | `quarter` | The frequency of the data. |
|
|
622
|
+
| `transform` | `no` | `string` | `index` | Transformation of the CPI data. Period represents the change since previous. Defaults to change from one year ago (yoy). |
|
|
623
|
+
| `provider` | `no` | `string` | `oecd` | - |
|
|
624
|
+
|
|
625
|
+
---
|
|
626
|
+
|
|
627
|
+
### `economy.indicators`
|
|
628
|
+
|
|
629
|
+
```python
|
|
630
|
+
data.economy.indicators(symbol=..., start_time=None, end_time=None, country=None, frequency=None, transform=None, use_cache=True, dimension_values=None, limit=None, pivot=False, provider=...)
|
|
631
|
+
```
|
|
632
|
+
|
|
633
|
+
Summary: Indicators
|
|
634
|
+
|
|
635
|
+
| Field | Value |
|
|
636
|
+
|---|---|
|
|
637
|
+
| Endpoint ID | `economy.indicators` |
|
|
638
|
+
| HTTP | `GET` |
|
|
639
|
+
| Path | `/inner/v1/agent-data/economy/indicators` |
|
|
640
|
+
| Default provider | - |
|
|
641
|
+
| SDK | `supported` |
|
|
642
|
+
| Host | `supported` |
|
|
643
|
+
| Notes | - |
|
|
644
|
+
|
|
645
|
+
#### Query parameters
|
|
646
|
+
|
|
647
|
+
| Param | Required | Type | Default | Notes |
|
|
648
|
+
|---|---|---|---|---|
|
|
649
|
+
| `symbol` | `yes` | `string | null` | `-` | Symbol to get data for. Multiple comma separated items allowed for provider(s): econdb, imf.; Symbol to get data for. The base symbol for the indicator (e.g. GDP, CPI, etc.). Use `available_indicators()` to get a list of available symbols. (provider: econdb); Symbol to get data for. Symbol format: 'dataflow::identifier' where identifier is either: - A table ID (starts with 'H_') for hierarchical table data - An indicator code for individual indicator data Examples: - 'BOP::H_BOP_BOP_AGG_STANDARD_PRESENTATION' - Balance of Payments table - 'BOP_AGG::GS_CD,BOP_AGG::GS_DB' - Multiple BOP_AGG indicators (Goods & Services) - 'IL::RGV_REVS' - Gold reserves in millions of fine troy ounces - 'WEO::NGDP_RPCH' - Real GDP growth (annual only) - 'WEO::POILBRE' - Brent crude oil price (use country='G001' for world) - 'PCPS::PGOLD' - Gold price per troy ounce (monthly/quarterly available) Use `obb.economy.available_indicators(provider='imf')` to discover symbols. Use `obb.economy.imf_utils.list_tables()` to see available tables. (provider: imf) |
|
|
650
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
651
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
652
|
+
| `country` | `no` | `string | null` | `-` | The country to get data. Multiple comma separated items allowed for provider(s): econdb, imf.; The country to get data. ISO country codes or country names. (provider: econdb); ISO3 country code(s). Use comma-separated values for multiple countries. Validated against the dataflow's available countries via constraint API. (provider: imf) |
|
|
653
|
+
| `frequency` | `no` | `string | null` | `-` | The frequency of the data.; The frequency of the data, default is 'quarter'. Only valid when 'symbol' is 'main'. (provider: econdb); The frequency of the data. Choices vary by indicator and country. Common options: 'annual', 'quarter', 'month'. Use 'all' or '*' to return all available frequencies. Direct IMF codes (e.g., 'A', 'Q', 'M') are also accepted. (provider: imf) |
|
|
654
|
+
| `transform` | `no` | `string | null` | `-` | The transformation to apply to the data, default is None. tpop: Change from previous period toya: Change from one year ago tusd: Values as US dollars tpgp: Values as a percent of GDP Only 'tpop' and 'toya' are applicable to all indicators. Applying transformations across multiple indicators/countries may produce unexpected results. This is because not all indicators are compatible with all transformations, and the original units and scale differ between entities. `tusd` should only be used where values are currencies. (provider: econdb); Transformation to apply to the data. User-friendly options: 'index' (raw values), 'yoy' (year-over-year %), 'period' (period-over-period %). Use 'all' or '*' to return all available transformations. Direct IMF codes (e.g., 'USD', 'IX') are also accepted. (provider: imf) |
|
|
655
|
+
| `use_cache` | `no` | `boolean` | `true` | If True, the request will be cached for one day. Using cache is recommended to avoid needlessly requesting the same data. (provider: econdb) |
|
|
656
|
+
| `dimension_values` | `no` | `array | null` | `-` | accepts array values List of additional dimension filters in 'DIM_ID:DIM_VALUE' format. Parameter can be entered multiple times. (provider: imf) |
|
|
657
|
+
| `limit` | `no` | `integer | null` | `-` | Maximum number of records to retrieve per series. (provider: imf) |
|
|
658
|
+
| `pivot` | `no` | `boolean` | `false` | If True, pivots the data to presentation view with 'indicator' and 'country' as the index, date as values. (provider: imf) |
|
|
659
|
+
| `provider` | `yes` | `string` | `-` | enum: econdb, imf |
|
|
660
|
+
|
|
661
|
+
---
|
|
662
|
+
|
|
663
|
+
### `economy.interest_rates`
|
|
664
|
+
|
|
665
|
+
```python
|
|
666
|
+
data.economy.interest_rates(start_time=None, end_time=None, country='united_states', duration='short', frequency='monthly', provider='oecd')
|
|
667
|
+
```
|
|
668
|
+
|
|
669
|
+
Summary: Interest Rates
|
|
670
|
+
|
|
671
|
+
| Field | Value |
|
|
672
|
+
|---|---|
|
|
673
|
+
| Endpoint ID | `economy.interest_rates` |
|
|
674
|
+
| HTTP | `GET` |
|
|
675
|
+
| Path | `/inner/v1/agent-data/economy/interest_rates` |
|
|
676
|
+
| Default provider | `oecd` |
|
|
677
|
+
| SDK | `supported` |
|
|
678
|
+
| Host | `supported` |
|
|
679
|
+
| Notes | - |
|
|
680
|
+
|
|
681
|
+
#### Query parameters
|
|
682
|
+
|
|
683
|
+
| Param | Required | Type | Default | Notes |
|
|
684
|
+
|---|---|---|---|---|
|
|
685
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
686
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
687
|
+
| `country` | `no` | `string` | `united_states` | The country to get data. Multiple comma separated items allowed for provider(s): oecd. |
|
|
688
|
+
| `duration` | `no` | `string` | `short` | enum: immediate, short, long Duration of the interest rate. 'immediate' is the overnight rate, 'short' is the 3-month rate, and 'long' is the 10-year rate. (provider: oecd) |
|
|
689
|
+
| `frequency` | `no` | `string` | `monthly` | enum: monthly, quarter, annual Frequency to get interest rate for for. (provider: oecd) |
|
|
690
|
+
| `provider` | `no` | `string` | `oecd` | - |
|
|
691
|
+
|
|
692
|
+
---
|
|
693
|
+
|
|
694
|
+
### `economy.money_measures`
|
|
695
|
+
|
|
696
|
+
```python
|
|
697
|
+
data.economy.money_measures(start_time=None, end_time=None, adjusted=True, provider='federal_reserve')
|
|
698
|
+
```
|
|
699
|
+
|
|
700
|
+
Summary: Money Measures
|
|
701
|
+
|
|
702
|
+
| Field | Value |
|
|
703
|
+
|---|---|
|
|
704
|
+
| Endpoint ID | `economy.money_measures` |
|
|
705
|
+
| HTTP | `GET` |
|
|
706
|
+
| Path | `/inner/v1/agent-data/economy/money_measures` |
|
|
707
|
+
| Default provider | `federal_reserve` |
|
|
708
|
+
| SDK | `supported` |
|
|
709
|
+
| Host | `supported` |
|
|
710
|
+
| Notes | - |
|
|
711
|
+
|
|
712
|
+
#### Query parameters
|
|
713
|
+
|
|
714
|
+
| Param | Required | Type | Default | Notes |
|
|
715
|
+
|---|---|---|---|---|
|
|
716
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
717
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
718
|
+
| `adjusted` | `no` | `boolean | null` | `true` | Whether to return seasonally adjusted data. |
|
|
719
|
+
| `provider` | `no` | `string` | `federal_reserve` | - |
|
|
720
|
+
|
|
721
|
+
---
|
|
722
|
+
|
|
723
|
+
### `economy.pce`
|
|
724
|
+
|
|
725
|
+
```python
|
|
726
|
+
data.economy.pce(date=None, category='personal_income', provider='fred')
|
|
727
|
+
```
|
|
728
|
+
|
|
729
|
+
Summary: Pce
|
|
730
|
+
|
|
731
|
+
| Field | Value |
|
|
732
|
+
|---|---|
|
|
733
|
+
| Endpoint ID | `economy.pce` |
|
|
734
|
+
| HTTP | `GET` |
|
|
735
|
+
| Path | `/inner/v1/agent-data/economy/pce` |
|
|
736
|
+
| Default provider | `fred` |
|
|
737
|
+
| SDK | `supported` |
|
|
738
|
+
| Host | `supported` |
|
|
739
|
+
| Notes | - |
|
|
740
|
+
|
|
741
|
+
#### Query parameters
|
|
742
|
+
|
|
743
|
+
| Param | Required | Type | Default | Notes |
|
|
744
|
+
|---|---|---|---|---|
|
|
745
|
+
| `date` | `no` | `string | null` | `-` | A specific date to get data for. Default is the latest report. Multiple comma separated items allowed for provider(s): fred. |
|
|
746
|
+
| `category` | `no` | `string` | `personal_income` | The category to query. (provider: fred) |
|
|
747
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
748
|
+
|
|
749
|
+
---
|
|
750
|
+
|
|
751
|
+
### `economy.primary_dealer_fails`
|
|
752
|
+
|
|
753
|
+
```python
|
|
754
|
+
data.economy.primary_dealer_fails(start_time=None, end_time=None, asset_class='all', unit='value', provider='federal_reserve')
|
|
755
|
+
```
|
|
756
|
+
|
|
757
|
+
Summary: Primary Dealer Fails
|
|
758
|
+
|
|
759
|
+
| Field | Value |
|
|
760
|
+
|---|---|
|
|
761
|
+
| Endpoint ID | `economy.primary_dealer_fails` |
|
|
762
|
+
| HTTP | `GET` |
|
|
763
|
+
| Path | `/inner/v1/agent-data/economy/primary_dealer_fails` |
|
|
764
|
+
| Default provider | `federal_reserve` |
|
|
765
|
+
| SDK | `supported` |
|
|
766
|
+
| Host | `supported` |
|
|
767
|
+
| Notes | - |
|
|
768
|
+
|
|
769
|
+
#### Query parameters
|
|
770
|
+
|
|
771
|
+
| Param | Required | Type | Default | Notes |
|
|
772
|
+
|---|---|---|---|---|
|
|
773
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
774
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
775
|
+
| `asset_class` | `no` | `string` | `all` | enum: all, treasuries, tips, agency, mbs, corporate Asset class to return, default is 'all'. (provider: federal_reserve) |
|
|
776
|
+
| `unit` | `no` | `string` | `value` | enum: value, percent Unit of the data returned to the 'value' field. Default is 'value', which represents millions of USD. 'percent' returns data as the percentage of the total fails-to-receive and fails-to-deliver, by asset class. (provider: federal_reserve) |
|
|
777
|
+
| `provider` | `no` | `string` | `federal_reserve` | - |
|
|
778
|
+
|
|
779
|
+
---
|
|
780
|
+
|
|
781
|
+
### `economy.primary_dealer_positioning`
|
|
782
|
+
|
|
783
|
+
```python
|
|
784
|
+
data.economy.primary_dealer_positioning(start_time=None, end_time=None, category='treasuries', provider='federal_reserve')
|
|
785
|
+
```
|
|
786
|
+
|
|
787
|
+
Summary: Primary Dealer Positioning
|
|
788
|
+
|
|
789
|
+
| Field | Value |
|
|
790
|
+
|---|---|
|
|
791
|
+
| Endpoint ID | `economy.primary_dealer_positioning` |
|
|
792
|
+
| HTTP | `GET` |
|
|
793
|
+
| Path | `/inner/v1/agent-data/economy/primary_dealer_positioning` |
|
|
794
|
+
| Default provider | `federal_reserve` |
|
|
795
|
+
| SDK | `supported` |
|
|
796
|
+
| Host | `supported` |
|
|
797
|
+
| Notes | - |
|
|
798
|
+
|
|
799
|
+
#### Query parameters
|
|
800
|
+
|
|
801
|
+
| Param | Required | Type | Default | Notes |
|
|
802
|
+
|---|---|---|---|---|
|
|
803
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
804
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
805
|
+
| `category` | `no` | `string` | `treasuries` | The category of asset to return, defaults to 'treasuries'. (provider: federal_reserve) |
|
|
806
|
+
| `provider` | `no` | `string` | `federal_reserve` | - |
|
|
807
|
+
|
|
808
|
+
---
|
|
809
|
+
|
|
810
|
+
### `economy.retail_prices`
|
|
811
|
+
|
|
812
|
+
```python
|
|
813
|
+
data.economy.retail_prices(start_time=None, end_time=None, item=None, country='united_states', region='all_city', frequency='monthly', transform=None, provider='fred')
|
|
814
|
+
```
|
|
815
|
+
|
|
816
|
+
Summary: Retail Prices
|
|
817
|
+
|
|
818
|
+
| Field | Value |
|
|
819
|
+
|---|---|
|
|
820
|
+
| Endpoint ID | `economy.retail_prices` |
|
|
821
|
+
| HTTP | `GET` |
|
|
822
|
+
| Path | `/inner/v1/agent-data/economy/retail_prices` |
|
|
823
|
+
| Default provider | `fred` |
|
|
824
|
+
| SDK | `supported` |
|
|
825
|
+
| Host | `supported` |
|
|
826
|
+
| Notes | - |
|
|
827
|
+
|
|
828
|
+
#### Query parameters
|
|
829
|
+
|
|
830
|
+
| Param | Required | Type | Default | Notes |
|
|
831
|
+
|---|---|---|---|---|
|
|
832
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
833
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
834
|
+
| `item` | `no` | `string | null` | `-` | The item or basket of items to query. |
|
|
835
|
+
| `country` | `no` | `string` | `united_states` | The country to get data. |
|
|
836
|
+
| `region` | `no` | `string` | `all_city` | The region to get average price levels for. (provider: fred) |
|
|
837
|
+
| `frequency` | `no` | `string` | `monthly` | The frequency of the data. (provider: fred) |
|
|
838
|
+
| `transform` | `no` | `string | null` | `-` | Transformation type None = No transformation chg = Change ch1 = Change from Year Ago pch = Percent Change pc1 = Percent Change from Year Ago pca = Compounded Annual Rate of Change cch = Continuously Compounded Rate of Change cca = Continuously Compounded Annual Rate of Change log = Natural Log (provider: fred) |
|
|
839
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
840
|
+
|
|
841
|
+
---
|
|
842
|
+
|
|
843
|
+
### `economy.risk_premium`
|
|
844
|
+
|
|
845
|
+
```python
|
|
846
|
+
data.economy.risk_premium(provider='fmp')
|
|
847
|
+
```
|
|
848
|
+
|
|
849
|
+
Summary: Risk Premium
|
|
850
|
+
|
|
851
|
+
| Field | Value |
|
|
852
|
+
|---|---|
|
|
853
|
+
| Endpoint ID | `economy.risk_premium` |
|
|
854
|
+
| HTTP | `GET` |
|
|
855
|
+
| Path | `/inner/v1/agent-data/economy/risk_premium` |
|
|
856
|
+
| Default provider | `fmp` |
|
|
857
|
+
| SDK | `supported` |
|
|
858
|
+
| Host | `supported` |
|
|
859
|
+
| Notes | - |
|
|
860
|
+
|
|
861
|
+
#### Query parameters
|
|
862
|
+
|
|
863
|
+
| Param | Required | Type | Default | Notes |
|
|
864
|
+
|---|---|---|---|---|
|
|
865
|
+
| `provider` | `no` | `string` | `fmp` | - |
|
|
866
|
+
|
|
867
|
+
---
|
|
868
|
+
|
|
869
|
+
### `economy.share_price_index`
|
|
870
|
+
|
|
871
|
+
```python
|
|
872
|
+
data.economy.share_price_index(start_time=None, end_time=None, country='united_states', frequency='monthly', provider='oecd')
|
|
873
|
+
```
|
|
874
|
+
|
|
875
|
+
Summary: Share Price Index
|
|
876
|
+
|
|
877
|
+
| Field | Value |
|
|
878
|
+
|---|---|
|
|
879
|
+
| Endpoint ID | `economy.share_price_index` |
|
|
880
|
+
| HTTP | `GET` |
|
|
881
|
+
| Path | `/inner/v1/agent-data/economy/share_price_index` |
|
|
882
|
+
| Default provider | `oecd` |
|
|
883
|
+
| SDK | `supported` |
|
|
884
|
+
| Host | `supported` |
|
|
885
|
+
| Notes | - |
|
|
886
|
+
|
|
887
|
+
#### Query parameters
|
|
888
|
+
|
|
889
|
+
| Param | Required | Type | Default | Notes |
|
|
890
|
+
|---|---|---|---|---|
|
|
891
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
892
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
893
|
+
| `country` | `no` | `string` | `united_states` | The country to get data. Multiple comma separated items allowed for provider(s): oecd. |
|
|
894
|
+
| `frequency` | `no` | `string` | `monthly` | The frequency of the data. |
|
|
895
|
+
| `provider` | `no` | `string` | `oecd` | - |
|
|
896
|
+
|
|
897
|
+
---
|
|
898
|
+
|
|
899
|
+
### `economy.shipping.chokepoint_info`
|
|
900
|
+
|
|
901
|
+
```python
|
|
902
|
+
data.economy.shipping.chokepoint_info(theme=None, provider='imf')
|
|
903
|
+
```
|
|
904
|
+
|
|
905
|
+
Summary: Chokepoint Info
|
|
906
|
+
|
|
907
|
+
| Field | Value |
|
|
908
|
+
|---|---|
|
|
909
|
+
| Endpoint ID | `economy.shipping.chokepoint_info` |
|
|
910
|
+
| HTTP | `GET` |
|
|
911
|
+
| Path | `/inner/v1/agent-data/economy/shipping/chokepoint_info` |
|
|
912
|
+
| Default provider | `imf` |
|
|
913
|
+
| SDK | `supported` |
|
|
914
|
+
| Host | `supported` |
|
|
915
|
+
| Notes | - |
|
|
916
|
+
|
|
917
|
+
#### Query parameters
|
|
918
|
+
|
|
919
|
+
| Param | Required | Type | Default | Notes |
|
|
920
|
+
|---|---|---|---|---|
|
|
921
|
+
| `theme` | `no` | `string | null` | `-` | Theme for the map. Only valid if `openbb-charting` is installed and `chart` parameter is set to `true`. Default is the 'chart_style' setting in `user_settings.json`, if available, otherwise 'dark'. (provider: imf) |
|
|
922
|
+
| `provider` | `no` | `string` | `imf` | - |
|
|
923
|
+
|
|
924
|
+
---
|
|
925
|
+
|
|
926
|
+
### `economy.shipping.chokepoint_volume`
|
|
927
|
+
|
|
928
|
+
```python
|
|
929
|
+
data.economy.shipping.chokepoint_volume(start_time=None, end_time=None, chokepoint=None, provider='imf')
|
|
930
|
+
```
|
|
931
|
+
|
|
932
|
+
Summary: Chokepoint Volume
|
|
933
|
+
|
|
934
|
+
| Field | Value |
|
|
935
|
+
|---|---|
|
|
936
|
+
| Endpoint ID | `economy.shipping.chokepoint_volume` |
|
|
937
|
+
| HTTP | `GET` |
|
|
938
|
+
| Path | `/inner/v1/agent-data/economy/shipping/chokepoint_volume` |
|
|
939
|
+
| Default provider | `imf` |
|
|
940
|
+
| SDK | `supported` |
|
|
941
|
+
| Host | `supported` |
|
|
942
|
+
| Notes | - |
|
|
943
|
+
|
|
944
|
+
#### Query parameters
|
|
945
|
+
|
|
946
|
+
| Param | Required | Type | Default | Notes |
|
|
947
|
+
|---|---|---|---|---|
|
|
948
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
949
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
950
|
+
| `chokepoint` | `no` | `string | null` | `-` | Name of the chokepoint. Use `None` for all chokepoints. Choices are: - suez_canal - panama_canal - bosporus_strait - bab_el_mandeb_strait - malacca_strait - strait_of_hormuz - cape_of_good_hope - gibraltar_strait - dover_strait - oresund_strait - taiwan_strait - korea_strait - tsugaru_strait - luzon_strait - lombok_strait - ombai_strait - bohai_strait - torres_strait - sunda_strait - makassar_strait - magellan_strait - yucatan_channel - windward_passage - mona_passage Multiple comma separated items allowed. (provider: imf) |
|
|
951
|
+
| `provider` | `no` | `string` | `imf` | - |
|
|
952
|
+
|
|
953
|
+
---
|
|
954
|
+
|
|
955
|
+
### `economy.shipping.port_info`
|
|
956
|
+
|
|
957
|
+
```python
|
|
958
|
+
data.economy.shipping.port_info(continent=None, country=None, port_code=None, limit=None, provider='imf')
|
|
959
|
+
```
|
|
960
|
+
|
|
961
|
+
Summary: Port Info
|
|
962
|
+
|
|
963
|
+
| Field | Value |
|
|
964
|
+
|---|---|
|
|
965
|
+
| Endpoint ID | `economy.shipping.port_info` |
|
|
966
|
+
| HTTP | `GET` |
|
|
967
|
+
| Path | `/inner/v1/agent-data/economy/shipping/port_info` |
|
|
968
|
+
| Default provider | `imf` |
|
|
969
|
+
| SDK | `supported` |
|
|
970
|
+
| Host | `supported` |
|
|
971
|
+
| Notes | - |
|
|
972
|
+
|
|
973
|
+
#### Query parameters
|
|
974
|
+
|
|
975
|
+
| Param | Required | Type | Default | Notes |
|
|
976
|
+
|---|---|---|---|---|
|
|
977
|
+
| `continent` | `no` | `string | null` | `-` | Filter by continent. This parameter is ignored when a `country` is provided. (provider: imf) |
|
|
978
|
+
| `country` | `no` | `string | null` | `-` | Country to focus on. Enter as a 3-letter ISO country code. This parameter supersedes `continent` if both are provided. (provider: imf) |
|
|
979
|
+
| `port_code` | `no` | `string | null` | `-` | This is a dummy parameter to allow grouping in OpenBB Workspace widgets. (provider: imf) |
|
|
980
|
+
| `limit` | `no` | `integer | null` | `-` | Limit the number of results returned. Limit is determined by the annual average number of vessels transiting through the port. If not provided, all ports are returned. (provider: imf) |
|
|
981
|
+
| `provider` | `no` | `string` | `imf` | - |
|
|
982
|
+
|
|
983
|
+
---
|
|
984
|
+
|
|
985
|
+
### `economy.shipping.port_volume`
|
|
986
|
+
|
|
987
|
+
```python
|
|
988
|
+
data.economy.shipping.port_volume(start_time=None, end_time=None, port_code=None, country=None, provider=...)
|
|
989
|
+
```
|
|
990
|
+
|
|
991
|
+
Summary: Port Volume
|
|
992
|
+
|
|
993
|
+
| Field | Value |
|
|
994
|
+
|---|---|
|
|
995
|
+
| Endpoint ID | `economy.shipping.port_volume` |
|
|
996
|
+
| HTTP | `GET` |
|
|
997
|
+
| Path | `/inner/v1/agent-data/economy/shipping/port_volume` |
|
|
998
|
+
| Default provider | - |
|
|
999
|
+
| SDK | `supported` |
|
|
1000
|
+
| Host | `supported` |
|
|
1001
|
+
| Notes | - |
|
|
1002
|
+
|
|
1003
|
+
#### Query parameters
|
|
1004
|
+
|
|
1005
|
+
| Param | Required | Type | Default | Notes |
|
|
1006
|
+
|---|---|---|---|---|
|
|
1007
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
1008
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
1009
|
+
| `port_code` | `no` | `string | null` | `-` | Port code to filter results by a specific port. This parameter is ignored if `country` parameter is provided. To get a list of available ports, use `obb.economy.shipping.port_info()`. Multiple comma separated items allowed. (provider: imf) |
|
|
1010
|
+
| `country` | `no` | `string | null` | `-` | Country to focus on. Enter as a 3-letter ISO country code. This parameter is overridden by `port_code` if both are provided. (provider: imf) |
|
|
1011
|
+
| `provider` | `yes` | `string` | `-` | enum: econdb, imf |
|
|
1012
|
+
|
|
1013
|
+
---
|
|
1014
|
+
|
|
1015
|
+
### `economy.survey.bls_search`
|
|
1016
|
+
|
|
1017
|
+
```python
|
|
1018
|
+
data.economy.survey.bls_search(query='', category=None, include_extras=False, include_code_map=False, provider='bls')
|
|
1019
|
+
```
|
|
1020
|
+
|
|
1021
|
+
Summary: Bls Search
|
|
1022
|
+
|
|
1023
|
+
| Field | Value |
|
|
1024
|
+
|---|---|
|
|
1025
|
+
| Endpoint ID | `economy.survey.bls_search` |
|
|
1026
|
+
| HTTP | `GET` |
|
|
1027
|
+
| Path | `/inner/v1/agent-data/economy/survey/bls_search` |
|
|
1028
|
+
| Default provider | `bls` |
|
|
1029
|
+
| SDK | `supported` |
|
|
1030
|
+
| Host | `supported` |
|
|
1031
|
+
| Notes | - |
|
|
1032
|
+
|
|
1033
|
+
#### Query parameters
|
|
1034
|
+
|
|
1035
|
+
| Param | Required | Type | Default | Notes |
|
|
1036
|
+
|---|---|---|---|---|
|
|
1037
|
+
| `query` | `no` | `string` | `` | The search word(s). Use semi-colon to separate multiple queries as an & operator. |
|
|
1038
|
+
| `category` | `no` | `string | null` | `-` | The category of BLS survey to search within. An empty search query will return all series within the category. Options are: cpi - Consumer Price Index pce - Personal Consumption Expenditure ppi - Producer Price Index ip - Industry Productivity jolts - Job Openings and Labor Turnover Survey nfp - Nonfarm Payrolls cps - Current Population Survey lfs - Labor Force Statistics wages - Wages ec - Employer Costs sla - State and Local Area Employment bed - Business Employment Dynamics tu - Time Use (provider: bls) |
|
|
1039
|
+
| `include_extras` | `no` | `boolean` | `false` | Include additional information in the search results. Extra fields returned are metadata and vary by survey. Fields are undefined strings that typically have names ending with '_code'. (provider: bls) |
|
|
1040
|
+
| `include_code_map` | `no` | `boolean` | `false` | When True, includes the complete code map for eaçh survey in the category, returned separately as a nested JSON to the `extras['results_metadata']` property of the response. Example content is the NAICS industry map for PPI surveys. Each code is a value within the 'symbol' of the time series. (provider: bls) |
|
|
1041
|
+
| `provider` | `no` | `string` | `bls` | - |
|
|
1042
|
+
|
|
1043
|
+
---
|
|
1044
|
+
|
|
1045
|
+
### `economy.survey.bls_series`
|
|
1046
|
+
|
|
1047
|
+
```python
|
|
1048
|
+
data.economy.survey.bls_series(symbol=..., start_time=None, end_time=None, calculations=True, annual_average=False, aspects=False, provider='bls')
|
|
1049
|
+
```
|
|
1050
|
+
|
|
1051
|
+
Summary: Bls Series
|
|
1052
|
+
|
|
1053
|
+
| Field | Value |
|
|
1054
|
+
|---|---|
|
|
1055
|
+
| Endpoint ID | `economy.survey.bls_series` |
|
|
1056
|
+
| HTTP | `GET` |
|
|
1057
|
+
| Path | `/inner/v1/agent-data/economy/survey/bls_series` |
|
|
1058
|
+
| Default provider | `bls` |
|
|
1059
|
+
| SDK | `supported` |
|
|
1060
|
+
| Host | `supported` |
|
|
1061
|
+
| Notes | - |
|
|
1062
|
+
|
|
1063
|
+
#### Query parameters
|
|
1064
|
+
|
|
1065
|
+
| Param | Required | Type | Default | Notes |
|
|
1066
|
+
|---|---|---|---|---|
|
|
1067
|
+
| `symbol` | `yes` | `string` | `-` | Symbol to get data for. Multiple comma separated items allowed for provider(s): bls. |
|
|
1068
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
1069
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
1070
|
+
| `calculations` | `no` | `boolean` | `true` | Include calculations in the response, if available. Default is True. (provider: bls) |
|
|
1071
|
+
| `annual_average` | `no` | `boolean` | `false` | Include annual averages in the response, if available. Default is False. (provider: bls) |
|
|
1072
|
+
| `aspects` | `no` | `boolean` | `false` | Include all aspects associated with a data point for a given BLS series ID, if available. Returned with the series metadata, under `extras` of the response object. Default is False. (provider: bls) |
|
|
1073
|
+
| `provider` | `no` | `string` | `bls` | - |
|
|
1074
|
+
|
|
1075
|
+
---
|
|
1076
|
+
|
|
1077
|
+
### `economy.survey.economic_conditions_chicago`
|
|
1078
|
+
|
|
1079
|
+
```python
|
|
1080
|
+
data.economy.survey.economic_conditions_chicago(start_time=None, end_time=None, frequency=None, aggregation_method=None, transform=None, provider='fred')
|
|
1081
|
+
```
|
|
1082
|
+
|
|
1083
|
+
Summary: Economic Conditions Chicago
|
|
1084
|
+
|
|
1085
|
+
| Field | Value |
|
|
1086
|
+
|---|---|
|
|
1087
|
+
| Endpoint ID | `economy.survey.economic_conditions_chicago` |
|
|
1088
|
+
| HTTP | `GET` |
|
|
1089
|
+
| Path | `/inner/v1/agent-data/economy/survey/economic_conditions_chicago` |
|
|
1090
|
+
| Default provider | `fred` |
|
|
1091
|
+
| SDK | `supported` |
|
|
1092
|
+
| Host | `supported` |
|
|
1093
|
+
| Notes | - |
|
|
1094
|
+
|
|
1095
|
+
#### Query parameters
|
|
1096
|
+
|
|
1097
|
+
| Param | Required | Type | Default | Notes |
|
|
1098
|
+
|---|---|---|---|---|
|
|
1099
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
1100
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
1101
|
+
| `frequency` | `no` | `string | null` | `-` | Frequency aggregation to convert monthly data to lower frequency. None is monthly. (provider: fred) |
|
|
1102
|
+
| `aggregation_method` | `no` | `string | null` | `-` | A key that indicates the aggregation method used for frequency aggregation. avg = Average sum = Sum eop = End of Period (provider: fred) |
|
|
1103
|
+
| `transform` | `no` | `string | null` | `-` | Transformation type None = No transformation chg = Change ch1 = Change from Year Ago pch = Percent Change pc1 = Percent Change from Year Ago pca = Compounded Annual Rate of Change cch = Continuously Compounded Rate of Change cca = Continuously Compounded Annual Rate of Change log = Natural Log (provider: fred) |
|
|
1104
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
1105
|
+
|
|
1106
|
+
---
|
|
1107
|
+
|
|
1108
|
+
### `economy.survey.inflation_expectations`
|
|
1109
|
+
|
|
1110
|
+
```python
|
|
1111
|
+
data.economy.survey.inflation_expectations(start_date=None, end_date=None, provider='federal_reserve')
|
|
1112
|
+
```
|
|
1113
|
+
|
|
1114
|
+
Summary: Inflation Expectations
|
|
1115
|
+
|
|
1116
|
+
| Field | Value |
|
|
1117
|
+
|---|---|
|
|
1118
|
+
| Endpoint ID | `economy.survey.inflation_expectations` |
|
|
1119
|
+
| HTTP | `GET` |
|
|
1120
|
+
| Path | `/inner/v1/agent-data/economy/survey/inflation_expectations` |
|
|
1121
|
+
| Default provider | `federal_reserve` |
|
|
1122
|
+
| SDK | `supported` |
|
|
1123
|
+
| Host | `supported` |
|
|
1124
|
+
| Notes | - |
|
|
1125
|
+
|
|
1126
|
+
#### Query parameters
|
|
1127
|
+
|
|
1128
|
+
| Param | Required | Type | Default | Notes |
|
|
1129
|
+
|---|---|---|---|---|
|
|
1130
|
+
| `start_date` | `no` | `string | null` | `-` | Start date of the data, in YYYY-MM-DD format. Data begins from 1970-04-01 and is quarterly. (provider: federal_reserve) |
|
|
1131
|
+
| `end_date` | `no` | `string | null` | `-` | End date of the data, in YYYY-MM-DD format. (provider: federal_reserve) |
|
|
1132
|
+
| `provider` | `no` | `string` | `federal_reserve` | - |
|
|
1133
|
+
|
|
1134
|
+
---
|
|
1135
|
+
|
|
1136
|
+
### `economy.survey.manufacturing_outlook_ny`
|
|
1137
|
+
|
|
1138
|
+
```python
|
|
1139
|
+
data.economy.survey.manufacturing_outlook_ny(start_time=None, end_time=None, topic='new_orders', seasonally_adjusted=False, frequency=None, aggregation_method=None, transform=None, provider='fred')
|
|
1140
|
+
```
|
|
1141
|
+
|
|
1142
|
+
Summary: Manufacturing Outlook Ny
|
|
1143
|
+
|
|
1144
|
+
| Field | Value |
|
|
1145
|
+
|---|---|
|
|
1146
|
+
| Endpoint ID | `economy.survey.manufacturing_outlook_ny` |
|
|
1147
|
+
| HTTP | `GET` |
|
|
1148
|
+
| Path | `/inner/v1/agent-data/economy/survey/manufacturing_outlook_ny` |
|
|
1149
|
+
| Default provider | `fred` |
|
|
1150
|
+
| SDK | `supported` |
|
|
1151
|
+
| Host | `supported` |
|
|
1152
|
+
| Notes | - |
|
|
1153
|
+
|
|
1154
|
+
#### Query parameters
|
|
1155
|
+
|
|
1156
|
+
| Param | Required | Type | Default | Notes |
|
|
1157
|
+
|---|---|---|---|---|
|
|
1158
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
1159
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
1160
|
+
| `topic` | `no` | `string` | `new_orders` | The topic for the survey response. Multiple comma separated items allowed. (provider: fred) |
|
|
1161
|
+
| `seasonally_adjusted` | `no` | `boolean` | `false` | Whether the data is seasonally adjusted, default is False (provider: fred) |
|
|
1162
|
+
| `frequency` | `no` | `string | null` | `-` | Frequency aggregation to convert monthly data to lower frequency. None is monthly. (provider: fred) |
|
|
1163
|
+
| `aggregation_method` | `no` | `string | null` | `-` | A key that indicates the aggregation method used for frequency aggregation. avg = Average sum = Sum eop = End of Period (provider: fred) |
|
|
1164
|
+
| `transform` | `no` | `string | null` | `-` | Transformation type None = No transformation chg = Change ch1 = Change from Year Ago pch = Percent Change pc1 = Percent Change from Year Ago pca = Compounded Annual Rate of Change cch = Continuously Compounded Rate of Change cca = Continuously Compounded Annual Rate of Change log = Natural Log (provider: fred) |
|
|
1165
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
1166
|
+
|
|
1167
|
+
---
|
|
1168
|
+
|
|
1169
|
+
### `economy.survey.manufacturing_outlook_texas`
|
|
1170
|
+
|
|
1171
|
+
```python
|
|
1172
|
+
data.economy.survey.manufacturing_outlook_texas(start_time=None, end_time=None, topic='new_orders_growth', frequency=None, aggregation_method=None, transform=None, provider='fred')
|
|
1173
|
+
```
|
|
1174
|
+
|
|
1175
|
+
Summary: Manufacturing Outlook Texas
|
|
1176
|
+
|
|
1177
|
+
| Field | Value |
|
|
1178
|
+
|---|---|
|
|
1179
|
+
| Endpoint ID | `economy.survey.manufacturing_outlook_texas` |
|
|
1180
|
+
| HTTP | `GET` |
|
|
1181
|
+
| Path | `/inner/v1/agent-data/economy/survey/manufacturing_outlook_texas` |
|
|
1182
|
+
| Default provider | `fred` |
|
|
1183
|
+
| SDK | `supported` |
|
|
1184
|
+
| Host | `supported` |
|
|
1185
|
+
| Notes | - |
|
|
1186
|
+
|
|
1187
|
+
#### Query parameters
|
|
1188
|
+
|
|
1189
|
+
| Param | Required | Type | Default | Notes |
|
|
1190
|
+
|---|---|---|---|---|
|
|
1191
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
1192
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
1193
|
+
| `topic` | `no` | `string` | `new_orders_growth` | The topic for the survey response. Multiple comma separated items allowed. (provider: fred) |
|
|
1194
|
+
| `frequency` | `no` | `string | null` | `-` | Frequency aggregation to convert monthly data to lower frequency. None is monthly. (provider: fred) |
|
|
1195
|
+
| `aggregation_method` | `no` | `string | null` | `-` | A key that indicates the aggregation method used for frequency aggregation. avg = Average sum = Sum eop = End of Period (provider: fred) |
|
|
1196
|
+
| `transform` | `no` | `string | null` | `-` | Transformation type None = No transformation chg = Change ch1 = Change from Year Ago pch = Percent Change pc1 = Percent Change from Year Ago pca = Compounded Annual Rate of Change cch = Continuously Compounded Rate of Change cca = Continuously Compounded Annual Rate of Change log = Natural Log (provider: fred) |
|
|
1197
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
1198
|
+
|
|
1199
|
+
---
|
|
1200
|
+
|
|
1201
|
+
### `economy.survey.nonfarm_payrolls`
|
|
1202
|
+
|
|
1203
|
+
```python
|
|
1204
|
+
data.economy.survey.nonfarm_payrolls(date=None, category='employees_nsa', provider='fred')
|
|
1205
|
+
```
|
|
1206
|
+
|
|
1207
|
+
Summary: Nonfarm Payrolls
|
|
1208
|
+
|
|
1209
|
+
| Field | Value |
|
|
1210
|
+
|---|---|
|
|
1211
|
+
| Endpoint ID | `economy.survey.nonfarm_payrolls` |
|
|
1212
|
+
| HTTP | `GET` |
|
|
1213
|
+
| Path | `/inner/v1/agent-data/economy/survey/nonfarm_payrolls` |
|
|
1214
|
+
| Default provider | `fred` |
|
|
1215
|
+
| SDK | `supported` |
|
|
1216
|
+
| Host | `supported` |
|
|
1217
|
+
| Notes | - |
|
|
1218
|
+
|
|
1219
|
+
#### Query parameters
|
|
1220
|
+
|
|
1221
|
+
| Param | Required | Type | Default | Notes |
|
|
1222
|
+
|---|---|---|---|---|
|
|
1223
|
+
| `date` | `no` | `string | null` | `-` | A specific date to get data for. Default is the latest report. Multiple comma separated items allowed for provider(s): fred. |
|
|
1224
|
+
| `category` | `no` | `string` | `employees_nsa` | The category to query. (provider: fred) |
|
|
1225
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
1226
|
+
|
|
1227
|
+
---
|
|
1228
|
+
|
|
1229
|
+
### `economy.survey.sloos`
|
|
1230
|
+
|
|
1231
|
+
```python
|
|
1232
|
+
data.economy.survey.sloos(start_time=None, end_time=None, category='spreads', transform=None, provider='fred')
|
|
1233
|
+
```
|
|
1234
|
+
|
|
1235
|
+
Summary: Sloos
|
|
1236
|
+
|
|
1237
|
+
| Field | Value |
|
|
1238
|
+
|---|---|
|
|
1239
|
+
| Endpoint ID | `economy.survey.sloos` |
|
|
1240
|
+
| HTTP | `GET` |
|
|
1241
|
+
| Path | `/inner/v1/agent-data/economy/survey/sloos` |
|
|
1242
|
+
| Default provider | `fred` |
|
|
1243
|
+
| SDK | `supported` |
|
|
1244
|
+
| Host | `supported` |
|
|
1245
|
+
| Notes | - |
|
|
1246
|
+
|
|
1247
|
+
#### Query parameters
|
|
1248
|
+
|
|
1249
|
+
| Param | Required | Type | Default | Notes |
|
|
1250
|
+
|---|---|---|---|---|
|
|
1251
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
1252
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
1253
|
+
| `category` | `no` | `string` | `spreads` | Category of survey response. (provider: fred) |
|
|
1254
|
+
| `transform` | `no` | `string | null` | `-` | Transformation type None = No transformation chg = Change ch1 = Change from Year Ago pch = Percent Change pc1 = Percent Change from Year Ago pca = Compounded Annual Rate of Change cch = Continuously Compounded Rate of Change cca = Continuously Compounded Annual Rate of Change log = Natural Log (provider: fred) |
|
|
1255
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
1256
|
+
|
|
1257
|
+
---
|
|
1258
|
+
|
|
1259
|
+
### `economy.survey.university_of_michigan`
|
|
1260
|
+
|
|
1261
|
+
```python
|
|
1262
|
+
data.economy.survey.university_of_michigan(start_time=None, end_time=None, frequency=None, aggregation_method=None, transform=None, provider='fred')
|
|
1263
|
+
```
|
|
1264
|
+
|
|
1265
|
+
Summary: University Of Michigan
|
|
1266
|
+
|
|
1267
|
+
| Field | Value |
|
|
1268
|
+
|---|---|
|
|
1269
|
+
| Endpoint ID | `economy.survey.university_of_michigan` |
|
|
1270
|
+
| HTTP | `GET` |
|
|
1271
|
+
| Path | `/inner/v1/agent-data/economy/survey/university_of_michigan` |
|
|
1272
|
+
| Default provider | `fred` |
|
|
1273
|
+
| SDK | `supported` |
|
|
1274
|
+
| Host | `supported` |
|
|
1275
|
+
| Notes | - |
|
|
1276
|
+
|
|
1277
|
+
#### Query parameters
|
|
1278
|
+
|
|
1279
|
+
| Param | Required | Type | Default | Notes |
|
|
1280
|
+
|---|---|---|---|---|
|
|
1281
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
1282
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
1283
|
+
| `frequency` | `no` | `string | null` | `-` | Frequency aggregation to convert monthly data to lower frequency. None is monthly. (provider: fred) |
|
|
1284
|
+
| `aggregation_method` | `no` | `string | null` | `-` | A key that indicates the aggregation method used for frequency aggregation. avg = Average sum = Sum eop = End of Period (provider: fred) |
|
|
1285
|
+
| `transform` | `no` | `string | null` | `-` | Transformation type None = No transformation chg = Change ch1 = Change from Year Ago pch = Percent Change pc1 = Percent Change from Year Ago pca = Compounded Annual Rate of Change cch = Continuously Compounded Rate of Change cca = Continuously Compounded Annual Rate of Change log = Natural Log (provider: fred) |
|
|
1286
|
+
| `provider` | `no` | `string` | `fred` | - |
|
|
1287
|
+
|
|
1288
|
+
---
|
|
1289
|
+
|
|
1290
|
+
### `economy.total_factor_productivity`
|
|
1291
|
+
|
|
1292
|
+
```python
|
|
1293
|
+
data.economy.total_factor_productivity(frequency='quarter', start_date=None, end_date=None, provider='federal_reserve')
|
|
1294
|
+
```
|
|
1295
|
+
|
|
1296
|
+
Summary: Total Factor Productivity
|
|
1297
|
+
|
|
1298
|
+
| Field | Value |
|
|
1299
|
+
|---|---|
|
|
1300
|
+
| Endpoint ID | `economy.total_factor_productivity` |
|
|
1301
|
+
| HTTP | `GET` |
|
|
1302
|
+
| Path | `/inner/v1/agent-data/economy/total_factor_productivity` |
|
|
1303
|
+
| Default provider | `federal_reserve` |
|
|
1304
|
+
| SDK | `supported` |
|
|
1305
|
+
| Host | `supported` |
|
|
1306
|
+
| Notes | - |
|
|
1307
|
+
|
|
1308
|
+
#### Query parameters
|
|
1309
|
+
|
|
1310
|
+
| Param | Required | Type | Default | Notes |
|
|
1311
|
+
|---|---|---|---|---|
|
|
1312
|
+
| `frequency` | `no` | `string` | `quarter` | Type of data to return. 'quarter' for quarterly time series, 'annual' for annual time series, 'summary' for summary statistics (period means). (provider: federal_reserve) |
|
|
1313
|
+
| `start_date` | `no` | `string | null` | `-` | Start date of the data, in YYYY-MM-DD format. Only applicable for time series data (quarter/annual). (provider: federal_reserve) |
|
|
1314
|
+
| `end_date` | `no` | `string | null` | `-` | End date of the data, in YYYY-MM-DD format. Only applicable for time series data (quarter/annual). (provider: federal_reserve) |
|
|
1315
|
+
| `provider` | `no` | `string` | `federal_reserve` | - |
|
|
1316
|
+
|
|
1317
|
+
---
|
|
1318
|
+
|
|
1319
|
+
### `economy.unemployment`
|
|
1320
|
+
|
|
1321
|
+
```python
|
|
1322
|
+
data.economy.unemployment(start_time=None, end_time=None, country='united_states', frequency='monthly', sex='total', age='total', seasonal_adjustment=False, provider='oecd')
|
|
1323
|
+
```
|
|
1324
|
+
|
|
1325
|
+
Summary: Unemployment
|
|
1326
|
+
|
|
1327
|
+
| Field | Value |
|
|
1328
|
+
|---|---|
|
|
1329
|
+
| Endpoint ID | `economy.unemployment` |
|
|
1330
|
+
| HTTP | `GET` |
|
|
1331
|
+
| Path | `/inner/v1/agent-data/economy/unemployment` |
|
|
1332
|
+
| Default provider | `oecd` |
|
|
1333
|
+
| SDK | `supported` |
|
|
1334
|
+
| Host | `supported` |
|
|
1335
|
+
| Notes | - |
|
|
1336
|
+
|
|
1337
|
+
#### Query parameters
|
|
1338
|
+
|
|
1339
|
+
| Param | Required | Type | Default | Notes |
|
|
1340
|
+
|---|---|---|---|---|
|
|
1341
|
+
| `start_time` | `no` | `integer | null` | `-` | Start time of the data as a Unix timestamp in milliseconds. Takes priority over start_date when both are provided. |
|
|
1342
|
+
| `end_time` | `no` | `integer | null` | `-` | End time of the data as a Unix timestamp in milliseconds. Takes priority over end_date when both are provided. |
|
|
1343
|
+
| `country` | `no` | `string` | `united_states` | The country to get data. Multiple comma separated items allowed for provider(s): oecd. |
|
|
1344
|
+
| `frequency` | `no` | `string` | `monthly` | The frequency of the data. |
|
|
1345
|
+
| `sex` | `no` | `string` | `total` | Sex to get unemployment for. (provider: oecd) |
|
|
1346
|
+
| `age` | `no` | `string` | `total` | Age group to get unemployment for. Total indicates 15 years or over (provider: oecd) |
|
|
1347
|
+
| `seasonal_adjustment` | `no` | `boolean` | `false` | Whether to get seasonally adjusted unemployment. Defaults to False. (provider: oecd) |
|
|
1348
|
+
| `provider` | `no` | `string` | `oecd` | - |
|