Description and symbology
Here you can get a list of full market indicator descriptions, info and symbology. Please consider that all market-related methods are beta and under heavy development.
Description by symbol
List stock descriptions by company symbol
/markets/stockdescriptions/symbol/{symbols}
te.getMarketsStockDescriptions(symbol='aapl:us', output_type='df')
data = te.getMarketStockDescriptions(symbol = 'aapl:us').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/stockdescriptions/symbol/aapl:us,fb:us?c=guest:guest");
Description by country
List all stocks description by country
/markets/stockdescriptions/country/{country}
te.getMarketsStockDescriptions(country='france', output_type='df')
data = te.getMarketStockDescriptions(country = 'france').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/stockdescriptions/country/france?c=guest:guest");
Symbologies by symbol
Get detailed symbology fields by company symbol
markets/symbology/symbol/{symbol}
te.getMarketsSymbology(symbol = 'aapl:us', output_type = 'df')
data = te.getSymbology(symbol = 'aapl:us').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/symbology/symbol/aapl:us?c=guest:guest");
Symbologies by ticker
Get detailed symbology fields by a specific ticker
/markets/symbology/ticker/{ticker}
te.getMarketsSymbology(ticker = 'aapl', output_type = 'df')
data = te.getSymbology(ticker = 'aapl').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/symbology/ticker/aapl?c=guest:guest");
Symbologies by ISIN
Get detailed symbology fields by a specific ISIN
/markets/symbology/isin/{isin}
te.getMarketsSymbology(isin = 'US0378331005', output_type = 'df')
data = te.getSymbology(isin = 'US0378331005').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/symbology/isin/US0378331005?c=guest:guest");
Response fields
Description
Field | Type | Description | Example |
---|---|---|---|
Symbol | string | Unique symbol used by Trading Economics | “AAPL:US” |
Name | string | Company name | “Apple” |
Description | string | Full indicator description | “Apple Inc. (Apple) designs, manufactures and markets smartphones…” |
Country | string | Country name | “United States” |
Sector | string | Indicator sector description | “Information Technology” |
Industry | string | Indicator industry description | “Technology Hardware & Equipment” |
Subindustry | string | Alternative indicator industry description | “Technology Hardware, Storage & Peripherals” |
Symbology
Field | Type | Description | Example |
---|---|---|---|
Symbol | string | Unique symbol used by Trading Economics | “AAPL:US” |
Ticker | string | Unique ticker used by Trading Economics | “AAPL” |
ISIN | string | ISIN code | “US0378331005” |
Name | string | Company name | “Apple” |
Country | string | Country name | “United States” |