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");
Symbol | Name | Description | Country | Sector | Industry | Subindustry |
---|---|---|---|---|---|---|
AAPL:US | Apple | “Apple Inc. (Apple) designs, manufactures and markets smartphones, personal computers, tablets, wearables and accessories and sells…” | United States | Information Technology | Technology Hardware & Equipment | “Technology Hardware, Storage & Peripherals” |
FB:US | Meta | “Meta Platforms Inc., formerly Facebook, Inc., is focused on building products that enable people to connect and share through mobile…” | United States | Communications | Media | Internet 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");
Symbol | Name | Description | Country | Sector | Industry | Subindustry |
---|---|---|---|---|---|---|
AC:FP | Accor | “Accor SA is a France-based hospitality group. It operates through three divisions: Hotel Services, Hotel Assets & Other and New Businesses…” | France | Consumer Discretionary | “Gaming, Lodging & Restaurants” | Lodging |
ACA:FP | Credit Agricole | “Credit Agricole SA is a France-based banking group that offers banking and insurance services through a network of regional…” | France | Financials | Banking | Diversified Banks |
ADP:FP | Aeroports de Paris SA | “Aeroports de Paris SA is a France-based company active in the airport management industry. Through its subsidiaries…” | France | Industrials | Transportation & Logistics | Transport 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");
Symbol | Ticker | ISIN | Name | Country |
---|---|---|---|---|
AAPL:US | AAPL | US0378331005 | Apple | United 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");
Symbol | Ticker | ISIN | Name | Country |
---|---|---|---|---|
AC:MM | AC | MX01AC100006 | Arca Continental | Mexico |
ALFAA:MM | ALFAA | MXP000511016 | Alfa | Mexico |
ALPEKA:MM | ALPEKA | MX01AL0C0004 | Alpek | Mexico |
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");
Symbol | Ticker | ISIN | Name | Country |
---|---|---|---|---|
AAPL:US | AAPL | US0378331005 | Apple | United 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");
Symbol | Ticker | ISIN | Name | Country |
---|---|---|---|---|
AAPL:US | AAPL | US0378331005 | Apple | United States |
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” |