Discontinued Series

Get all discontinued series

All series

List of discontinued series for all countries.

/country/all/discontinued

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

FieldTypeDescriptionExample
CountrystringCountry name“China”
CategorystringCategory name“Coronavirus Recovered”
TitlestringTitle of the series“China Coronavirus COVID-19 Recovered”
LatestValueDatestringLatest value date“2021-12-15T00:00:00”
LatestValuenumberLatest value86689.00
SourcestringSource of the series“World Health Organization
SourceURLstringURL link of the source“https://www.worldbank.org”
UnitstringUnit of the data“Persons”
URLstringHyperlink at Trading Economics“/china/coronavirus-recovered”
CategoryGroupstringCategory group name“Health”
AdjustmentstringAdjustment“Current Prices”
FrequencystringFrequency of the series“Daily”
HistoricalDataSymbolstringUnique symbol used by Trading Economics“CNCOVIDRT”
CreateDatestringTime when an series was inserted“2020-03-11T13:48:00”
FirstValueDatestringDate of the first value“2019-12-31T00:00:00”
PreviousValuenumberPrevious value86676.00
PreviousValueDatestringDate of the previous value“2021-06-29T00:00:00”