Â
API - Economic Indicators Data
Economic Indicators Data
Economic Indicators List
Get a list of Economic Indicator.
Request
GET /economicindicators
Example
GET https://api.gurufocus.com/public/user/{api_token}/economicindicators
Response
Response will be an array containing the list of Economic Indicator.
[
"SP 500 Index",
"Manufacturers' New Orders: Durable Goods",
"Real Retail and Food Services Sales",
"Light Weight Vehicle Sales: Autos and Light Trucks",
"Capacity Utilization: Total Industry",
"Industrial Production: Durable Manufacturing",
"Industrial Production Index",
"Manufacturing: PMI Composite Index",
"SSE Composite Index"
]
Economic Indicator Data
Get economic Indicator description, data info.
Request
GET /economicindicators/item/{economic_indicator}
Parameters
- economic_indicator Required Economic indicator name got from Economic Indicator API. Requiring URL-encoding.
Example
GET https://api.gurufocus.com/public/user/{api_token}/economicindicators/item/S&P%20500%20Index
Response
Response will be an object containing the information and the data of Economic Indicator.
{
"info": {
"Indicator": "SP 500 Index",
"description": "S&P 500 Stock Price Index"
},
"data": [
[
"1957-01-02",
46.2
],
[
"1957-01-03",
46.6
]
]
}
Continue to read: API Reference - General Data