Discontinued Series
Get all discontinued series
All series
List of discontinued series for all countries.
te.getDiscontinuedIndicator(output_type='df')
data = te.getDiscontinuedIndicators().then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/country/all/discontinued?c=guest:guest");
By country
List of discontinued series by country
/country/{country}/discontinued
te.getDiscontinuedIndicator(country = 'united states', output_type = 'df')
data = te.getDiscontinuedIndicators(country = 'united states').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/country/united%20states/discontinued?c=guest:guest");
/country/{countries}/discontinued
te.getDiscontinuedIndicator(country = ['united states', 'china'], output_type = 'df' )
data = te.getDiscontinuedIndicators(country = ['united states', 'china'] ).then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/country/united%20states,china/discontinued?c=guest:guest");
Response fields
Field | Type | Description | Example |
---|---|---|---|
Country | string | Country name | “China” |
Category | string | Category name | “Coronavirus Recovered” |
Title | string | Title of the series | “China Coronavirus COVID-19 Recovered” |
LatestValueDate | string | Latest value date | “2021-12-15T00:00:00” |
LatestValue | number | Latest value | 86689.00 |
Source | string | Source of the series | “World Health Organization |
SourceURL | string | URL link of the source | “https://www.worldbank.org” |
Unit | string | Unit of the data | “Persons” |
URL | string | Hyperlink at Trading Economics | “/china/coronavirus-recovered” |
CategoryGroup | string | Category group name | “Health” |
Adjustment | string | Adjustment | “Current Prices” |
Frequency | string | Frequency of the series | “Daily” |
HistoricalDataSymbol | string | Unique symbol used by Trading Economics | “CNCOVIDRT” |
CreateDate | string | Time when an series was inserted | “2020-03-11T13:48:00” |
FirstValueDate | string | Date of the first value | “2019-12-31T00:00:00” |
PreviousValue | number | Previous value | 86676.00 |
PreviousValueDate | string | Date of the previous value | “2021-06-29T00:00:00” |