Description and symbology

Here you can get a list of full market indicator descriptions, info and symbology.

Description by symbol

List stock descriptions by company symbol

/markets/stockdescriptions/symbol/{symbols}

import tradingeconomics as te
te.login('your_api_key')

te.getMarketsStockDescriptions(symbol='aapl:us')
const te = require('tradingeconomics');
te.login('your_api_key');

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");
SymbolNameDescriptionCountrySectorIndustrySubindustry
AAPL:USApple“Apple Inc. (Apple) designs, manufactures and markets smartphones, personal computers, tablets, wearables and accessories and sells…”United StatesInformation TechnologyTechnology Hardware & Equipment“Technology Hardware, Storage & Peripherals”
FB:USMeta“Meta Platforms Inc., formerly Facebook, Inc., is focused on building products that enable people to connect and share through mobile…”United StatesCommunicationsMediaInternet Media

Description by country

List all stocks description by country

/markets/stockdescriptions/country/{country}

te.getMarketsStockDescriptions(country='france')
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");
SymbolNameDescriptionCountrySectorIndustrySubindustry
AC:FPAccor“Accor SA is a France-based hospitality group. It operates through three divisions: Hotel Services, Hotel Assets & Other and New Businesses…”FranceConsumer Discretionary“Gaming, Lodging & Restaurants”Lodging
ACA:FPCredit Agricole“Credit Agricole SA is a France-based banking group that offers banking and insurance services through a network of regional…”FranceFinancialsBankingDiversified Banks
ADP:FPAeroports de Paris SA“Aeroports de Paris SA is a France-based company active in the airport management industry. Through its subsidiaries…”FranceIndustrialsTransportation & LogisticsTransport Support Services

Symbologies by symbol

Get detailed symbology fields by company symbol

markets/symbology/symbol/{symbol}

te.getMarketsSymbology(symbol = 'aapl:us')
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");
SymbolTickerISINNameCountry
AAPL:USAAPLUS0378331005AppleUnited States

Symbologies by country

Get detailed symbology fields by a specific country

markets/symbology/country/{country}

te.getMarketsSymbology(country = 'mexico')
data = te.getSymbology(country = 'mexico').then(function(data){
  console.log(data)     
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/markets/symbology/country/mexico?c=guest:guest");
SymbolTickerISINNameCountry
AC:MMACMX01AC100006Arca ContinentalMexico
ALFAA:MMALFAAMXP000511016AlfaMexico
ALPEKA:MMALPEKAMX01AL0C0004AlpekMexico

Symbologies by ticker

Get detailed symbology fields by a specific ticker

/markets/symbology/ticker/{ticker}

te.getMarketsSymbology(ticker = 'aapl')
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");
SymbolTickerISINNameCountry
AAPL:USAAPLUS0378331005AppleUnited States

Symbologies by ISIN

Get detailed symbology fields by a specific ISIN

/markets/symbology/isin/{isin}

te.getMarketsSymbology(isin = 'US0378331005')
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");
SymbolTickerISINNameCountry
AAPL:USAAPLUS0378331005AppleUnited States

Response fields

Description

FieldTypeDescriptionExample
SymbolstringUnique symbol used by Trading Economics“AAPL:US”
NamestringCompany name“Apple”
DescriptionstringFull indicator description“Apple Inc. (Apple) designs, manufactures and markets smartphones…”
CountrystringCountry name“United States”
SectorstringIndicator sector description“Information Technology”
IndustrystringIndicator industry description“Technology Hardware & Equipment”
SubindustrystringAlternative indicator industry description“Technology Hardware, Storage & Peripherals”

Symbology

FieldTypeDescriptionExample
SymbolstringUnique symbol used by Trading Economics“AAPL:US”
TickerstringUnique ticker used by Trading Economics“AAPL”
ISINstringISIN code“US0378331005”
NamestringCompany name“Apple”
CountrystringCountry name“United States”