Markets Quotes by Symbol
If you already know the symbol for the market you’re looking for, use this endpoint to retrieve its latest quote data. If you don’t know the symbol, there are several ways to find it:
- Quotes by Category — browse available symbols by market category (e.g., stocks, bonds, commodities).
- Quotes by Country — look up symbols filtered by country.
- Search — search for symbols by name or keyword.
Markets
Using Requests:
import requests
your_api_key = 'your_api_key'
url = f'https://api.tradingeconomics.com/markets/symbol/aapl:us,gac:com?c={your_api_key}'
data = requests.get(url).json()
print(data)
Or using our package:
import tradingeconomics as te
te.login('your_api_key')
te.getMarketsBySymbol(symbols='aapl:us')
With multi symbols:
te.getMarketsBySymbol(symbols=['aapl:us', 'gac:com'])
Using Requests:
const axios = require('axios');
(async () => {
const your_api_key = 'your_api_key'
const response = await axios.get(`https://api.tradingeconomics.com/markets/symbol/aapl:us,gac:com?c=${your_api_key}`)
console.log(response.data)
})()
Or using our package:
const te = require('tradingeconomics');
te.login('your_api_key');
data = te.getMarketSnap(symbol = 'aapl:us').then(function(data){
console.log(data)
});
With multi symbols:
data = te.getMarketSnap(symbol = ['aapl:us', 'gac:com']).then(function(data){
console.log(data)
});
Using Requests:
using (var httpClient = new HttpClient())
{
using (var request = new HttpRequestMessage(new HttpMethod("GET"), "https://api.tradingeconomics.com/markets/symbol/aapl:us?c=your_api_key"))
{
request.Headers.TryAddWithoutValidation("Upgrade-Insecure-Requests", "1");
var response = await httpClient.SendAsync(request);
if (response.IsSuccessStatusCode)
{
var content = await response.Content.ReadAsStringAsync();
Console.WriteLine(content);
}
}
}
With multi symbols:
new HttpRequestMessage(new HttpMethod("GET"), "https://api.tradingeconomics.com/markets/symbol/aapl:us,gac:com?c=your_api_key");
The response data format can be configured by appending the &f= parameter to the URL request.
https://api.tradingeconomics.com/markets/symbol/{symbol}?c={your_api_key}&f=json
[
{
"Symbol": "AAPL:US",
"Ticker": "AAPL",
"Name": "Apple",
"Country": "United States",
"Date": "2023-10-10T17:45:39.677",
"Type": "stocks",
"decimals": 2.0,
"state": "OPEN",
"Last": 178.41,
"Close": 178.41,
"CloseDate": "2023-10-10T17:46:00",
"MarketCap": 28052502.0,
"URL": "/aapl:us",
"Importance": 500,
"DailyChange": -0.58,
"DailyPercentualChange": -0.32,
"WeeklyChange": 6.01,
"WeeklyPercentualChange": 3.4861,
"MonthlyChange": -0.95,
"MonthlyPercentualChange": -0.5297,
"YearlyChange": 39.43,
"YearlyPercentualChange": 28.371,
"YTDChange": 48.48,
"YTDPercentualChange": 37.3124,
"day_high": 179.72,
"day_low": 178.1,
"yesterday": 178.99,
"lastWeek": 172.4,
"lastMonth": 179.36,
"lastYear": 138.98,
"startYear": 129.93,
"ISIN": "US0378331005",
"unit": "USD",
"frequency": "Live",
"LastUpdate": "2023-10-10T17:46:00"
},
{
"Symbol": "GAC:COM",
"Ticker": "GAC",
"Name": "Gallium",
"Country": "commodity",
"Date": "2023-10-09T00:00:00",
"Type": "commodity",
"decimals": 2.0,
"state": "CLOSED",
"Last": 1955.0,
"Close": 1955.0,
"CloseDate": "2023-10-09T00:00:00",
"MarketCap": null,
"URL": "/commodity/gallium",
"Importance": 1000,
"DailyChange": 50.0,
"DailyPercentualChange": 2.6247,
"WeeklyChange": 50.0,
"WeeklyPercentualChange": 2.6247,
"MonthlyChange": 230.0,
"MonthlyPercentualChange": 13.3333,
"YearlyChange": -550.0,
"YearlyPercentualChange": -21.9561,
"YTDChange": 30.0,
"YTDPercentualChange": 1.5584,
"day_high": 1980.0,
"day_low": 1930.0,
"yesterday": 1905.0,
"lastWeek": 1905.0,
"lastMonth": 1725.0,
"lastYear": 2505.0,
"startYear": 1925.0,
"ISIN": "",
"unit": "CNY/Kg",
"frequency": "daily",
"LastUpdate": "2023-10-10T17:02:00"
}
]
https://api.tradingeconomics.com/markets/symbol/{symbol}?c={your_api_key}&f=csv
Symbol,Ticker,Name,Country,Date,Type,decimals,state,Last,Close,CloseDate,MarketCap,URL,Importance,DailyChange,DailyPercentualChange,WeeklyChange,WeeklyPercentualChange,MonthlyChange,MonthlyPercentualChange,YearlyChange,YearlyPercentualChange,YTDChange,YTDPercentualChange,day_high,day_low,yesterday,lastWeek,lastMonth,lastYear,startYear,ISIN,unit,frequency,LastUpdate
AAPL:US,AAPL,Apple,United States,10/10/2023 5:45:39 PM,stocks,2,OPEN,178.41,178.41,10/10/2023 5:46:00 PM,28052502,/aapl:us,500,-0.58,-0.3200,6.01,3.4861,-0.95,-0.5297,39.43,28.3710,48.48,37.3124,179.72,178.10,178.99,172.40,179.36,138.98,129.93,US0378331005,USD,Live,10/10/2023 5:46:00 PM
GAC:COM,GAC,Gallium,commodity,10/9/2023 12:00:00 AM,commodity,2,CLOSED,1955.00,1955.00,10/9/2023 12:00:00 AM,,/commodity/gallium,1000,50.00,2.6247,50.00,2.6247,230.00,13.3333,-550.00,-21.9561,30.00,1.5584,1980.00,1930.00,1905.00,1905.00,1725.00,2505.00,1925.00,,CNY/Kg,daily,10/10/2023 5:02:00 PM
https://api.tradingeconomics.com/markets/symbol/{symbol}?c={your_api_key}&f=xml
<ArrayOfMarkets.MarketSnapItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APILib.DB">
<Markets.MarketSnapItem>
<Close>178.41</Close>
<CloseDate>2023-10-10T17:46:00</CloseDate>
<Country>United States</Country>
<DailyChange>-0.58</DailyChange>
<DailyPercentualChange>-0.3200</DailyPercentualChange>
<Date>2023-10-10T17:45:39.677</Date>
<ISIN>US0378331005</ISIN>
<Importance>500</Importance>
<Last>178.41</Last>
<LastUpdate>2023-10-10T17:46:00</LastUpdate>
<MarketCap>28052502</MarketCap>
<MonthlyChange>-0.95</MonthlyChange>
<MonthlyPercentualChange>-0.5297</MonthlyPercentualChange>
<Name>Apple</Name>
<Symbol>AAPL:US</Symbol>
<Ticker>AAPL</Ticker>
<Type>stocks</Type>
<URL>/aapl:us</URL>
<WeeklyChange>6.01</WeeklyChange>
<WeeklyPercentualChange>3.4861</WeeklyPercentualChange>
<YTDChange>48.48</YTDChange>
<YTDPercentualChange>37.3124</YTDPercentualChange>
<YearlyChange>39.43</YearlyChange>
<YearlyPercentualChange>28.3710</YearlyPercentualChange>
<day_high>179.72</day_high>
<day_low>178.10</day_low>
<decimals>2</decimals>
<frequency>Live</frequency>
<lastMonth>179.36</lastMonth>
<lastWeek>172.40</lastWeek>
<lastYear>138.98</lastYear>
<startYear>129.93</startYear>
<state>OPEN</state>
<unit>USD</unit>
<yesterday>178.99</yesterday>
</Markets.MarketSnapItem>
<Markets.MarketSnapItem>
<Close>1955.00</Close>
<CloseDate>2023-10-09T00:00:00</CloseDate>
<Country>commodity</Country>
<DailyChange>50.00</DailyChange>
<DailyPercentualChange>2.6247</DailyPercentualChange>
<Date>2023-10-09T00:00:00</Date>
<ISIN/>
<Importance>1000</Importance>
<Last>1955.00</Last>
<LastUpdate>2023-10-10T17:02:00</LastUpdate>
<MarketCap i:nil="true"/>
<MonthlyChange>230.00</MonthlyChange>
<MonthlyPercentualChange>13.3333</MonthlyPercentualChange>
<Name>Gallium</Name>
<Symbol>GAC:COM</Symbol>
<Ticker>GAC</Ticker>
<Type>commodity</Type>
<URL>/commodity/gallium</URL>
<WeeklyChange>50.00</WeeklyChange>
<WeeklyPercentualChange>2.6247</WeeklyPercentualChange>
<YTDChange>30.00</YTDChange>
<YTDPercentualChange>1.5584</YTDPercentualChange>
<YearlyChange>-550.00</YearlyChange>
<YearlyPercentualChange>-21.9561</YearlyPercentualChange>
<day_high>1980.00</day_high>
<day_low>1930.00</day_low>
<decimals>2</decimals>
<frequency>daily</frequency>
<lastMonth>1725.00</lastMonth>
<lastWeek>1905.00</lastWeek>
<lastYear>2505.00</lastYear>
<startYear>1925.00</startYear>
<state>CLOSED</state>
<unit>CNY/Kg</unit>
<yesterday>1905.00</yesterday>
</Markets.MarketSnapItem>
</ArrayOfMarkets.MarketSnapItem>
https://api.tradingeconomics.com/markets/symbol/{symbol}?c={your_api_key}
| Symbol | Ticker | Name | Country | Date | Type | decimals | state | Last | Close | CloseDate | MarketCap | URL | Importance | DailyChange | DailyPercentualChange | WeeklyChange | WeeklyPercentualChange | MonthlyChange | MonthlyPercentualChange | YearlyChange | YearlyPercentualChange | YTDChange | YTDPercentualChange | day_high | day_low | yesterday | lastWeek | lastMonth | lastYear | startYear | ISIN | unit | frequency | LastUpdate |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| AAPL:US | AAPL | Apple | United States | 7/12/2023 1:46:04 PM | stocks | 2 | OPEN | 191.34 | 191.34 | 7/12/2023 1:46:00 PM | 30763082 | /aapl:us | 500 | 3.26 | 1.7300 | 0.01 | 0.0052 | 7.55 | 4.1079 | 45.48 | 31.1806 | 61.41 | 47.2639 | 191.34 | 186.60 | 188.08 | 191.33 | 183.79 | 145.86 | 129.93 | US0378331005 | USD | Live | 7/12/2023 1:46:00 PM |
| GAC:COM | GAC | Gallium | commodity | 7/11/2023 12:00:00 AM | commodity | 2 | CLOSED | 1675.00 | 1675.00 | 7/11/2023 12:00:00 AM | /commodity/gallium | 1000 | 0.00 | 0.0000 | 0.00 | 0.0000 | 20.00 | 1.2085 | -1550.00 | -48.0620 | -250.00 | -12.9870 | 1675.00 | 1675.00 | 1675.00 | 1675.00 | 1655.00 | 3225.00 | 1925.00 | CNY/Kg | daily | 7/12/2023 1:02:00 PM |
Peers
Using Requests:
import requests
your_api_key = 'your_api_key'
url = f'https://api.tradingeconomics.com/markets/peers/aapl:us?c={your_api_key}'
data = requests.get(url).json()
print(data)
Or using our package:
te.getMarketsPeers(symbols='aapl:us')
Using Requests:
const axios = require('axios');
(async () => {
const your_api_key = 'your_api_key'
const response = await axios.get(`https://api.tradingeconomics.com/markets/peers/aapl:us?c=${your_api_key}`)
console.log(response.data)
})()
Or using our package:
data = te.getMarketSnap(peers_symbol = 'aapl:us').then(function(data){
console.log(data)
});
Using Requests:
new HttpRequestMessage(new HttpMethod("GET"), "https://api.tradingeconomics.com/markets/peers/aapl:us?c=your_api_key");
https://api.tradingeconomics.com/markets/peers/{symbol}?c={your_api_key}&f=json
[
{
"Symbol": "2368:TT",
"relationship": 1,
"Ticker": "2368",
"Name": "Gold Circuit Elect",
"Country": "Taiwan",
"Date": "2023-10-06T00:00:00",
"Type": "stocks",
"decimals": 2.0,
"state": "CLOSED",
"Last": 221.0,
"Close": 221.0,
"CloseDate": "2023-10-06T00:00:00",
"MarketCap": 107558048000.0,
"URL": "/2368:tt",
"Importance": 1000,
"DailyChange": -1.5,
"DailyPercentualChange": -0.6742,
"WeeklyChange": 5.5,
"WeeklyPercentualChange": 2.5522,
"MonthlyChange": 11.5,
"MonthlyPercentualChange": 5.4893,
"YearlyChange": 129.5,
"YearlyPercentualChange": 141.5301,
"YTDChange": 134.2,
"YTDPercentualChange": 154.6083,
"day_high": 227.0,
"day_low": 219.0,
"yesterday": 222.5,
"lastWeek": 215.5,
"lastMonth": 209.5,
"lastYear": 91.5,
"startYear": 86.8,
"ISIN": "TW0002368008",
"unit": "TWD",
"frequency": "Daily",
"LastUpdate": "2023-10-10T16:34:00"
},
{
"Symbol": "2415:TT",
"relationship": 1,
"Ticker": "2415",
"Name": "Cx Technology",
"Country": "Taiwan",
"Date": "2023-10-06T00:00:00",
"Type": "stocks",
"decimals": 2.0,
"state": "CLOSED",
"Last": 30.05,
"Close": 30.05,
"CloseDate": "2023-10-06T00:00:00",
"MarketCap": 27045.0,
"URL": "/2415:tt",
"Importance": 1000,
"DailyChange": -0.75,
"DailyPercentualChange": -2.4351,
"WeeklyChange": 1.3,
"WeeklyPercentualChange": 4.5217,
"MonthlyChange": -1.2,
"MonthlyPercentualChange": -3.84,
"YearlyChange": 6.1,
"YearlyPercentualChange": 25.4697,
"YTDChange": 9.65,
"YTDPercentualChange": 47.3039,
"day_high": 31.4,
"day_low": 30.0,
"yesterday": 30.8,
"lastWeek": 28.75,
"lastMonth": 31.25,
"lastYear": 23.95,
"startYear": 20.4,
"ISIN": "TW0002415007",
"unit": "TWD",
"frequency": "Daily",
"LastUpdate": "2023-10-10T16:35:00"
},
{
"Symbol": "3149:TT",
"relationship": 1,
"Ticker": "3149",
"Name": "G-tech Optoelectron",
"Country": "Taiwan",
"Date": "2023-10-06T00:00:00",
"Type": "stocks",
"decimals": 2.0,
"state": "CLOSED",
"Last": 13.9,
"Close": 13.9,
"CloseDate": "2023-10-06T00:00:00",
"MarketCap": 3118181440.0,
"URL": "/3149:tt",
"Importance": 1000,
"DailyChange": 0.1,
"DailyPercentualChange": 0.7246,
"WeeklyChange": 0.25,
"WeeklyPercentualChange": 1.8315,
"MonthlyChange": -1.7,
"MonthlyPercentualChange": -10.8974,
"YearlyChange": -7.45,
"YearlyPercentualChange": -34.8946,
"YTDChange": -4.6,
"YTDPercentualChange": -24.8649,
"day_high": 14.35,
"day_low": 13.8,
"yesterday": 13.8,
"lastWeek": 13.65,
"lastMonth": 15.6,
"lastYear": 21.35,
"startYear": 18.5,
"ISIN": "TW0003149001",
"unit": "TWD",
"frequency": "Daily",
"LastUpdate": "2023-10-10T13:41:00"
}
]
https://api.tradingeconomics.com/markets/peers/{symbol}?c={your_api_key}&f=csv
2368:TT,1,2368,Gold Circuit Elect,Taiwan,10/6/2023 12:00:00 AM,stocks,2,CLOSED,221.00,221.00,10/6/2023 12:00:00 AM,107558048000,/2368:tt,1000,-1.50,-0.6742,5.50,2.5522,11.50,5.4893,129.50,141.5301,134.20,154.6083,227.00,219.00,222.50,215.50,209.50,91.50,86.80,TW0002368008,TWD,Daily,10/10/2023 4:34:00 PM
2415:TT,1,2415,Cx Technology,Taiwan,10/6/2023 12:00:00 AM,stocks,2,CLOSED,30.05,30.05,10/6/2023 12:00:00 AM,27045,/2415:tt,1000,-0.75,-2.4351,1.30,4.5217,-1.20,-3.8400,6.10,25.4697,9.65,47.3039,31.40,30.00,30.80,28.75,31.25,23.95,20.40,TW0002415007,TWD,Daily,10/10/2023 4:35:00 PM
3149:TT,1,3149,G-tech Optoelectron,Taiwan,10/6/2023 12:00:00 AM,stocks,2,CLOSED,13.90,13.90,10/6/2023 12:00:00 AM,3118181440,/3149:tt,1000,0.10,0.7246,0.25,1.8315,-1.70,-10.8974,-7.45,-34.8946,-4.60,-24.8649,14.35,13.80,13.80,13.65,15.60,21.35,18.50,TW0003149001,TWD,Daily,10/10/2023 1:41:00 PM
https://api.tradingeconomics.com/markets/peers/{symbol}?c={your_api_key}&f=xml
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketPeersItem">
<d2p1:Close>221.00</d2p1:Close>
<d2p1:CloseDate>2023-10-06T00:00:00</d2p1:CloseDate>
<d2p1:Country>Taiwan</d2p1:Country>
<d2p1:DailyChange>-1.50</d2p1:DailyChange>
<d2p1:DailyPercentualChange>-0.6742</d2p1:DailyPercentualChange>
<d2p1:Date>2023-10-06T00:00:00</d2p1:Date>
<d2p1:ISIN>TW0002368008</d2p1:ISIN>
<d2p1:Importance>1000</d2p1:Importance>
<d2p1:Last>221.00</d2p1:Last>
<d2p1:LastUpdate>2023-10-10T16:34:00</d2p1:LastUpdate>
<d2p1:MarketCap>107558048000</d2p1:MarketCap>
<d2p1:MonthlyChange>11.50</d2p1:MonthlyChange>
<d2p1:MonthlyPercentualChange>5.4893</d2p1:MonthlyPercentualChange>
<d2p1:Name>Gold Circuit Elect</d2p1:Name>
<d2p1:Symbol>2368:TT</d2p1:Symbol>
<d2p1:Ticker>2368</d2p1:Ticker>
<d2p1:Type>stocks</d2p1:Type>
<d2p1:URL>/2368:tt</d2p1:URL>
<d2p1:WeeklyChange>5.50</d2p1:WeeklyChange>
<d2p1:WeeklyPercentualChange>2.5522</d2p1:WeeklyPercentualChange>
<d2p1:YTDChange>134.20</d2p1:YTDChange>
<d2p1:YTDPercentualChange>154.6083</d2p1:YTDPercentualChange>
<d2p1:YearlyChange>129.50</d2p1:YearlyChange>
<d2p1:YearlyPercentualChange>141.5301</d2p1:YearlyPercentualChange>
<d2p1:day_high>227.00</d2p1:day_high>
<d2p1:day_low>219.00</d2p1:day_low>
<d2p1:decimals>2</d2p1:decimals>
<d2p1:frequency>Daily</d2p1:frequency>
<d2p1:lastMonth>209.50</d2p1:lastMonth>
<d2p1:lastWeek>215.50</d2p1:lastWeek>
<d2p1:lastYear>91.50</d2p1:lastYear>
<d2p1:relationship>1</d2p1:relationship>
<d2p1:startYear>86.80</d2p1:startYear>
<d2p1:state>CLOSED</d2p1:state>
<d2p1:unit>TWD</d2p1:unit>
<d2p1:yesterday>222.50</d2p1:yesterday>
</anyType>
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketPeersItem">
<d2p1:Close>30.05</d2p1:Close>
<d2p1:CloseDate>2023-10-06T00:00:00</d2p1:CloseDate>
<d2p1:Country>Taiwan</d2p1:Country>
<d2p1:DailyChange>-0.75</d2p1:DailyChange>
<d2p1:DailyPercentualChange>-2.4351</d2p1:DailyPercentualChange>
<d2p1:Date>2023-10-06T00:00:00</d2p1:Date>
<d2p1:ISIN>TW0002415007</d2p1:ISIN>
<d2p1:Importance>1000</d2p1:Importance>
<d2p1:Last>30.05</d2p1:Last>
<d2p1:LastUpdate>2023-10-10T16:35:00</d2p1:LastUpdate>
<d2p1:MarketCap>27045</d2p1:MarketCap>
<d2p1:MonthlyChange>-1.20</d2p1:MonthlyChange>
<d2p1:MonthlyPercentualChange>-3.8400</d2p1:MonthlyPercentualChange>
<d2p1:Name>Cx Technology</d2p1:Name>
<d2p1:Symbol>2415:TT</d2p1:Symbol>
<d2p1:Ticker>2415</d2p1:Ticker>
<d2p1:Type>stocks</d2p1:Type>
<d2p1:URL>/2415:tt</d2p1:URL>
<d2p1:WeeklyChange>1.30</d2p1:WeeklyChange>
<d2p1:WeeklyPercentualChange>4.5217</d2p1:WeeklyPercentualChange>
<d2p1:YTDChange>9.65</d2p1:YTDChange>
<d2p1:YTDPercentualChange>47.3039</d2p1:YTDPercentualChange>
<d2p1:YearlyChange>6.10</d2p1:YearlyChange>
<d2p1:YearlyPercentualChange>25.4697</d2p1:YearlyPercentualChange>
<d2p1:day_high>31.40</d2p1:day_high>
<d2p1:day_low>30.00</d2p1:day_low>
<d2p1:decimals>2</d2p1:decimals>
<d2p1:frequency>Daily</d2p1:frequency>
<d2p1:lastMonth>31.25</d2p1:lastMonth>
<d2p1:lastWeek>28.75</d2p1:lastWeek>
<d2p1:lastYear>23.95</d2p1:lastYear>
<d2p1:relationship>1</d2p1:relationship>
<d2p1:startYear>20.40</d2p1:startYear>
<d2p1:state>CLOSED</d2p1:state>
<d2p1:unit>TWD</d2p1:unit>
<d2p1:yesterday>30.80</d2p1:yesterday>
</anyType>
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketPeersItem">
<d2p1:Close>13.90</d2p1:Close>
<d2p1:CloseDate>2023-10-06T00:00:00</d2p1:CloseDate>
<d2p1:Country>Taiwan</d2p1:Country>
<d2p1:DailyChange>0.10</d2p1:DailyChange>
<d2p1:DailyPercentualChange>0.7246</d2p1:DailyPercentualChange>
<d2p1:Date>2023-10-06T00:00:00</d2p1:Date>
<d2p1:ISIN>TW0003149001</d2p1:ISIN>
<d2p1:Importance>1000</d2p1:Importance>
<d2p1:Last>13.90</d2p1:Last>
<d2p1:LastUpdate>2023-10-10T13:41:00</d2p1:LastUpdate>
<d2p1:MarketCap>3118181440</d2p1:MarketCap>
<d2p1:MonthlyChange>-1.70</d2p1:MonthlyChange>
<d2p1:MonthlyPercentualChange>-10.8974</d2p1:MonthlyPercentualChange>
<d2p1:Name>G-tech Optoelectron</d2p1:Name>
<d2p1:Symbol>3149:TT</d2p1:Symbol>
<d2p1:Ticker>3149</d2p1:Ticker>
<d2p1:Type>stocks</d2p1:Type>
<d2p1:URL>/3149:tt</d2p1:URL>
<d2p1:WeeklyChange>0.25</d2p1:WeeklyChange>
<d2p1:WeeklyPercentualChange>1.8315</d2p1:WeeklyPercentualChange>
<d2p1:YTDChange>-4.60</d2p1:YTDChange>
<d2p1:YTDPercentualChange>-24.8649</d2p1:YTDPercentualChange>
<d2p1:YearlyChange>-7.45</d2p1:YearlyChange>
<d2p1:YearlyPercentualChange>-34.8946</d2p1:YearlyPercentualChange>
<d2p1:day_high>14.35</d2p1:day_high>
<d2p1:day_low>13.80</d2p1:day_low>
<d2p1:decimals>2</d2p1:decimals>
<d2p1:frequency>Daily</d2p1:frequency>
<d2p1:lastMonth>15.60</d2p1:lastMonth>
<d2p1:lastWeek>13.65</d2p1:lastWeek>
<d2p1:lastYear>21.35</d2p1:lastYear>
<d2p1:relationship>1</d2p1:relationship>
<d2p1:startYear>18.50</d2p1:startYear>
<d2p1:state>CLOSED</d2p1:state>
<d2p1:unit>TWD</d2p1:unit>
<d2p1:yesterday>13.80</d2p1:yesterday>
</anyType>
</ArrayOfanyType>
https://api.tradingeconomics.com/markets/peers/{symbol}?c={your_api_key}
| Symbol | relationship | Ticker | Name | Country | Date | Type | decimals | state | Last | Close | CloseDate | MarketCap | URL | Importance | DailyChange | DailyPercentualChange | WeeklyChange | WeeklyPercentualChange | MonthlyChange | MonthlyPercentualChange | YearlyChange | YearlyPercentualChange | YTDChange | YTDPercentualChange | day_high | day_low | yesterday | lastWeek | lastMonth | lastYear | startYear | ISIN | unit | frequency | LastUpdate |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 6758:JP | 1 | 6758 | Sony | Japan | 7/12/2023 12:00:00 AM | stocks | 2 | CLOSED | 12450.00 | 12450.00 | 7/12/2023 12:00:00 AM | 157423500 | /6758:jp | 1000 | -225.00 | -1.7751 | -860.00 | -6.4613 | -1470.00 | -10.5603 | 1260.00 | 11.2601 | 2415.00 | 24.0658 | 12560.00 | 12330.00 | 12675.00 | 13310.00 | 13920.00 | 11190.00 | 10035.00 | JP34359 | JPY | Daily | 7/12/2023 1:50:00 PM |
| AAPL:US | 1 | AAPL | Apple | United States | 7/12/2023 2:29:52 PM | stocks | 2 | OPEN | 190.35 | 190.35 | 7/12/2023 2:30:00 PM | 30763082 | /aapl:us | 500 | 2.27 | 1.2100 | -0.98 | -0.5122 | 7.04 | 3.8405 | 44.86 | 30.8337 | 60.42 | 46.5020 | 190.99 | 189.45 | 188.08 | 191.33 | 183.31 | 145.49 | 129.93 | US0378331005 | USD | Live | 7/12/2023 2:30:00 PM |
| ADI:US | 1 | ADI | Analog Devices | United States | 7/12/2023 2:30:17 PM | stocks | 2 | OPEN | 194.62 | 194.62 | 7/12/2023 2:30:00 PM | 964599 | /adi:us | 950 | 3.67 | 1.9200 | 4.62 | 2.4316 | 2.25 | 1.1696 | 45.43 | 30.4511 | 30.59 | 18.6490 | 194.66 | 192.5750000 | 190.95 | 190.00 | 192.37 | 149.19 | 164.03 | US0326541051 | USD | Live | 7/12/2023 2:30:00 PM |
Components
Using Requests:
import requests
your_api_key = 'your_api_key'
url = f'https://api.tradingeconomics.com/markets/components/psi20:ind?c={your_api_key}'
data = requests.get(url).json()
print(data)
Or using our package:
te.getMarketsComponents(symbols='psi20:ind')
With multi tickers:
te.getMarketsComponents(symbols=['indu:ind', 'psi20:ind'])
Using Requests:
const axios = require('axios');
(async () => {
const your_api_key = 'your_api_key'
const response = await axios.get(`https://api.tradingeconomics.com/markets/components/psi20:ind?c=${your_api_key}`)
console.log(response.data)
})()
Or using our package:
data = te.getMarketSnap(components_symbol = 'psi20:ind').then(function(data){
console.log(data)
});
With multi tickers:
data = te.getMarketSnap(components_symbol = ['indu:ind', 'psi20:ind']).then(function(data){
console.log(data)
});
Using Requests:
new HttpRequestMessage(new HttpMethod("GET"), "https://api.tradingeconomics.com/markets/components/psi20:ind?c=your_api_key");
With multi tickers:
new HttpRequestMessage(new HttpMethod("GET"), "https://api.tradingeconomics.com/markets/components/indu:ind,psi20:ind?c=your_api_key");
https://api.tradingeconomics.com/markets/components/{symbol}?c={your_api_key}&f=json
[
{
"Symbol": "ALTR:PL",
"relationship": 0,
"Ticker": "ALSS",
"Name": "Altri",
"Country": "Portugal",
"Date": "2023-10-10T00:00:00",
"Type": "stocks",
"decimals": 2.0,
"state": "CLOSED",
"Last": 4.4,
"Close": 4.4,
"CloseDate": "2023-10-10T00:00:00",
"MarketCap": 900938303.0,
"URL": "/altr:pl",
"Importance": 1000,
"DailyChange": 0.07,
"DailyPercentualChange": 1.6166,
"WeeklyChange": 0.17,
"WeeklyPercentualChange": 4.0189,
"MonthlyChange": -0.16,
"MonthlyPercentualChange": -3.5088,
"YearlyChange": -0.69,
"YearlyPercentualChange": -13.556,
"YTDChange": -0.605,
"YTDPercentualChange": -12.0879,
"day_high": 4.41,
"day_low": 4.338,
"yesterday": 4.33,
"lastWeek": 4.23,
"lastMonth": 4.56,
"lastYear": 5.09,
"startYear": 5.005,
"ISIN": "PTALT0AE0002",
"unit": "EUR",
"frequency": "Daily",
"LastUpdate": "2023-10-10T17:15:00"
},
{
"Symbol": "BCP:PL",
"relationship": 0,
"Ticker": "BCP",
"Name": "BCP",
"Country": "Portugal",
"Date": "2023-10-10T00:00:00",
"Type": "stocks",
"decimals": 2.0,
"state": "CLOSED",
"Last": 0.2776,
"Close": 0.2776,
"CloseDate": "2023-10-10T00:00:00",
"MarketCap": 4192620813.0,
"URL": "/bcp:pl",
"Importance": 1000,
"DailyChange": 0.008,
"DailyPercentualChange": 2.9674,
"WeeklyChange": 0.0168,
"WeeklyPercentualChange": 6.4417,
"MonthlyChange": 0.0296,
"MonthlyPercentualChange": 11.9355,
"YearlyChange": 0.1503,
"YearlyPercentualChange": 118.0676,
"YTDChange": 0.1312,
"YTDPercentualChange": 89.6175,
"day_high": 0.279,
"day_low": 0.2715,
"yesterday": 0.2696,
"lastWeek": 0.2608,
"lastMonth": 0.248,
"lastYear": 0.1273,
"startYear": 0.1464,
"ISIN": "PTBCP0AM0007",
"unit": "EUR",
"frequency": "Daily",
"LastUpdate": "2023-10-10T17:19:00"
},
{
"Symbol": "COR:PL",
"relationship": 0,
"Ticker": "CORA",
"Name": "Corticeira Amorim",
"Country": "Portugal",
"Date": "2023-10-10T00:00:00",
"Type": "stocks",
"decimals": 2.0,
"state": "CLOSED",
"Last": 9.52,
"Close": 9.52,
"CloseDate": "2023-10-10T00:00:00",
"MarketCap": 1280790000.0,
"URL": "/cor:pl",
"Importance": 1000,
"DailyChange": 0.16,
"DailyPercentualChange": 1.7094,
"WeeklyChange": -0.12,
"WeeklyPercentualChange": -1.2448,
"MonthlyChange": -0.54,
"MonthlyPercentualChange": -5.3678,
"YearlyChange": 0.73,
"YearlyPercentualChange": 8.3049,
"YTDChange": 0.8,
"YTDPercentualChange": 9.1743,
"day_high": 9.63,
"day_low": 9.35,
"yesterday": 9.36,
"lastWeek": 9.64,
"lastMonth": 10.06,
"lastYear": 8.79,
"startYear": 8.72,
"ISIN": "PTCOR0AE0006",
"unit": "EUR",
"frequency": "Daily",
"LastUpdate": "2023-10-10T17:21:00"
}
]
https://api.tradingeconomics.com/markets/components/{symbol}?c={your_api_key}&f=csv
ALTR:PL,0,ALSS,Altri,Portugal,10/10/2023 12:00:00 AM,stocks,2,CLOSED,4.40,4.40,10/10/2023 12:00:00 AM,900938303,/altr:pl,1000,0.07,1.6166,0.17,4.0189,-0.16,-3.5088,-0.69,-13.5560,-0.6050000,-12.0879,4.41,4.3380000,4.33,4.23,4.56,5.09,5.0050,PTALT0AE0002,EUR,Daily,10/10/2023 5:15:00 PM
BCP:PL,0,BCP,BCP,Portugal,10/10/2023 12:00:00 AM,stocks,2,CLOSED,0.2776000,0.2776000,10/10/2023 12:00:00 AM,4192620813,/bcp:pl,1000,0.0080000,2.9674,0.0168000,6.4417,0.0296000,11.9355,0.1503000,118.0676,0.1312000,89.6175,0.2790000,0.2715000,0.2696000,0.2608000,0.2480000,0.1273000,0.1464,PTBCP0AM0007,EUR,Daily,10/10/2023 5:19:00 PM
COR:PL,0,CORA,Corticeira Amorim,Portugal,10/10/2023 12:00:00 AM,stocks,2,CLOSED,9.52,9.52,10/10/2023 12:00:00 AM,1280790000,/cor:pl,1000,0.16,1.7094,-0.12,-1.2448,-0.54,-5.3678,0.73,8.3049,0.80,9.1743,9.63,9.35,9.36,9.64,10.06,8.79,8.72,PTCOR0AE0006,EUR,Daily,10/10/2023 5:21:00 PM
https://api.tradingeconomics.com/markets/components/{symbol}?c={your_api_key}&f=xml
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketPeersItem">
<d2p1:Close>4.40</d2p1:Close>
<d2p1:CloseDate>2023-10-10T00:00:00</d2p1:CloseDate>
<d2p1:Country>Portugal</d2p1:Country>
<d2p1:DailyChange>0.07</d2p1:DailyChange>
<d2p1:DailyPercentualChange>1.6166</d2p1:DailyPercentualChange>
<d2p1:Date>2023-10-10T00:00:00</d2p1:Date>
<d2p1:ISIN>PTALT0AE0002</d2p1:ISIN>
<d2p1:Importance>1000</d2p1:Importance>
<d2p1:Last>4.40</d2p1:Last>
<d2p1:LastUpdate>2023-10-10T17:15:00</d2p1:LastUpdate>
<d2p1:MarketCap>900938303</d2p1:MarketCap>
<d2p1:MonthlyChange>-0.16</d2p1:MonthlyChange>
<d2p1:MonthlyPercentualChange>-3.5088</d2p1:MonthlyPercentualChange>
<d2p1:Name>Altri</d2p1:Name>
<d2p1:Symbol>ALTR:PL</d2p1:Symbol>
<d2p1:Ticker>ALSS</d2p1:Ticker>
<d2p1:Type>stocks</d2p1:Type>
<d2p1:URL>/altr:pl</d2p1:URL>
<d2p1:WeeklyChange>0.17</d2p1:WeeklyChange>
<d2p1:WeeklyPercentualChange>4.0189</d2p1:WeeklyPercentualChange>
<d2p1:YTDChange>-0.6050000</d2p1:YTDChange>
<d2p1:YTDPercentualChange>-12.0879</d2p1:YTDPercentualChange>
<d2p1:YearlyChange>-0.69</d2p1:YearlyChange>
<d2p1:YearlyPercentualChange>-13.5560</d2p1:YearlyPercentualChange>
<d2p1:day_high>4.41</d2p1:day_high>
<d2p1:day_low>4.3380000</d2p1:day_low>
<d2p1:decimals>2</d2p1:decimals>
<d2p1:frequency>Daily</d2p1:frequency>
<d2p1:lastMonth>4.56</d2p1:lastMonth>
<d2p1:lastWeek>4.23</d2p1:lastWeek>
<d2p1:lastYear>5.09</d2p1:lastYear>
<d2p1:relationship>0</d2p1:relationship>
<d2p1:startYear>5.0050</d2p1:startYear>
<d2p1:state>CLOSED</d2p1:state>
<d2p1:unit>EUR</d2p1:unit>
<d2p1:yesterday>4.33</d2p1:yesterday>
</anyType>
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketPeersItem">
<d2p1:Close>0.2776000</d2p1:Close>
<d2p1:CloseDate>2023-10-10T00:00:00</d2p1:CloseDate>
<d2p1:Country>Portugal</d2p1:Country>
<d2p1:DailyChange>0.0080000</d2p1:DailyChange>
<d2p1:DailyPercentualChange>2.9674</d2p1:DailyPercentualChange>
<d2p1:Date>2023-10-10T00:00:00</d2p1:Date>
<d2p1:ISIN>PTBCP0AM0007</d2p1:ISIN>
<d2p1:Importance>1000</d2p1:Importance>
<d2p1:Last>0.2776000</d2p1:Last>
<d2p1:LastUpdate>2023-10-10T17:19:00</d2p1:LastUpdate>
<d2p1:MarketCap>4192620813</d2p1:MarketCap>
<d2p1:MonthlyChange>0.0296000</d2p1:MonthlyChange>
<d2p1:MonthlyPercentualChange>11.9355</d2p1:MonthlyPercentualChange>
<d2p1:Name>BCP</d2p1:Name>
<d2p1:Symbol>BCP:PL</d2p1:Symbol>
<d2p1:Ticker>BCP</d2p1:Ticker>
<d2p1:Type>stocks</d2p1:Type>
<d2p1:URL>/bcp:pl</d2p1:URL>
<d2p1:WeeklyChange>0.0168000</d2p1:WeeklyChange>
<d2p1:WeeklyPercentualChange>6.4417</d2p1:WeeklyPercentualChange>
<d2p1:YTDChange>0.1312000</d2p1:YTDChange>
<d2p1:YTDPercentualChange>89.6175</d2p1:YTDPercentualChange>
<d2p1:YearlyChange>0.1503000</d2p1:YearlyChange>
<d2p1:YearlyPercentualChange>118.0676</d2p1:YearlyPercentualChange>
<d2p1:day_high>0.2790000</d2p1:day_high>
<d2p1:day_low>0.2715000</d2p1:day_low>
<d2p1:decimals>2</d2p1:decimals>
<d2p1:frequency>Daily</d2p1:frequency>
<d2p1:lastMonth>0.2480000</d2p1:lastMonth>
<d2p1:lastWeek>0.2608000</d2p1:lastWeek>
<d2p1:lastYear>0.1273000</d2p1:lastYear>
<d2p1:relationship>0</d2p1:relationship>
<d2p1:startYear>0.1464</d2p1:startYear>
<d2p1:state>CLOSED</d2p1:state>
<d2p1:unit>EUR</d2p1:unit>
<d2p1:yesterday>0.2696000</d2p1:yesterday>
</anyType>
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketPeersItem">
<d2p1:Close>9.52</d2p1:Close>
<d2p1:CloseDate>2023-10-10T00:00:00</d2p1:CloseDate>
<d2p1:Country>Portugal</d2p1:Country>
<d2p1:DailyChange>0.16</d2p1:DailyChange>
<d2p1:DailyPercentualChange>1.7094</d2p1:DailyPercentualChange>
<d2p1:Date>2023-10-10T00:00:00</d2p1:Date>
<d2p1:ISIN>PTCOR0AE0006</d2p1:ISIN>
<d2p1:Importance>1000</d2p1:Importance>
<d2p1:Last>9.52</d2p1:Last>
<d2p1:LastUpdate>2023-10-10T17:21:00</d2p1:LastUpdate>
<d2p1:MarketCap>1280790000</d2p1:MarketCap>
<d2p1:MonthlyChange>-0.54</d2p1:MonthlyChange>
<d2p1:MonthlyPercentualChange>-5.3678</d2p1:MonthlyPercentualChange>
<d2p1:Name>Corticeira Amorim</d2p1:Name>
<d2p1:Symbol>COR:PL</d2p1:Symbol>
<d2p1:Ticker>CORA</d2p1:Ticker>
<d2p1:Type>stocks</d2p1:Type>
<d2p1:URL>/cor:pl</d2p1:URL>
<d2p1:WeeklyChange>-0.12</d2p1:WeeklyChange>
<d2p1:WeeklyPercentualChange>-1.2448</d2p1:WeeklyPercentualChange>
<d2p1:YTDChange>0.80</d2p1:YTDChange>
<d2p1:YTDPercentualChange>9.1743</d2p1:YTDPercentualChange>
<d2p1:YearlyChange>0.73</d2p1:YearlyChange>
<d2p1:YearlyPercentualChange>8.3049</d2p1:YearlyPercentualChange>
<d2p1:day_high>9.63</d2p1:day_high>
<d2p1:day_low>9.35</d2p1:day_low>
<d2p1:decimals>2</d2p1:decimals>
<d2p1:frequency>Daily</d2p1:frequency>
<d2p1:lastMonth>10.06</d2p1:lastMonth>
<d2p1:lastWeek>9.64</d2p1:lastWeek>
<d2p1:lastYear>8.79</d2p1:lastYear>
<d2p1:relationship>0</d2p1:relationship>
<d2p1:startYear>8.72</d2p1:startYear>
<d2p1:state>CLOSED</d2p1:state>
<d2p1:unit>EUR</d2p1:unit>
<d2p1:yesterday>9.36</d2p1:yesterday>
</anyType>
</ArrayOfanyType>
https://api.tradingeconomics.com/markets/components/{symbol}?c={your_api_key}
| Symbol | relationship | Ticker | Name | Country | Date | Type | decimals | state | Last | Close | CloseDate | MarketCap | URL | Importance | DailyChange | DailyPercentualChange | WeeklyChange | WeeklyPercentualChange | MonthlyChange | MonthlyPercentualChange | YearlyChange | YearlyPercentualChange | YTDChange | YTDPercentualChange | day_high | day_low | yesterday | lastWeek | lastMonth | lastYear | startYear | ISIN | unit | frequency | LastUpdate |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ALTR:PL | 0 | ALSS | Altri | Portugal | 7/12/2023 12:00:00 AM | stocks | 2 | CLOSED | 4.1680 | 4.1680 | 7/12/2023 12:00:00 AM | 854981840 | /altr:pl | 1000 | -0.01 | -0.2393 | -0.0660 | -1.5588 | 0.0040 | 0.0961 | -1.9170 | -31.5037 | -0.8370 | -16.7233 | 4.19 | 4.1460 | 4.1780 | 4.2340 | 4.1640 | 6.0850 | 5.0050 | PTALT0AE0002 | EUR | Daily | 7/12/2023 2:18:00 PM |
| BCP:PL | 0 | BCP | BCP | Portugal | 7/12/2023 12:00:00 AM | stocks | 2 | CLOSED | 0.2269 | 0.2269 | 7/12/2023 12:00:00 AM | 3366511200 | /bcp:pl | 1000 | 0.00051 | 2.2994 | 0.0066 | 2.9959 | 0.0171 | 8.1506 | 0.0909 | 66.8382 | 0.0805 | 54.9863 | 0.2274 | 0.2225 | 0.2218 | 0.2203 | 0.2098 | 0.1360 | 0.1464 | PTBCP0AM0007 | EUR | Daily | 7/12/2023 2:15:00 PM |
| COR:PL | 0 | CORA | Corticeira Amorim | Portugal | 7/12/2023 12:00:00 AM | stocks | 2 | CLOSED | 9.98 | 9.98 | 7/12/2023 12:00:00 AM | 13167 | /cor:pl | 1000 | 0.12 | 1.2170 | 0.19 | 1.9408 | 0.13 | 1.3198 | -0.06 | -0.5976 | 1.26 | 14.4495 | 9.98 | 9.78 | 9.86 | 9.79 | 9.85 | 10.04 | 8.72 | PTCOR0AE0006 | EUR | Daily | 7/12/2023 2:22:00 PM |
Response fields
| Field | Type | Description | Example |
|---|---|---|---|
| Symbol | string | Unique symbol used by Trading Economics | “6758:JP” |
| Ticker | string | Unique ticker code used by Trading Economics | “6758” |
| Name | string | Full name of the company, commodity, or indicator | “Sony” |
| Country | string | Country associated with the instrument | “Japan” |
| Date | string | Date and time of the latest release in UTC (ISO 8601 format) | “2023-04-13T00:00:00” |
| Type | string | Market type | “stocks” |
| Decimals | number | Number of decimal places used in reported values | 2.0 |
| State | string | Current market state | “CLOSED” |
| Last | number | Most recent trading value or price | 11900.00 |
| Close | number | Last recorded value before the market closed | 11900.00 |
| CloseDate | string | Date and time of the last closing price (ISO 8601 format) | “2023-04-13T00:00:00” |
| MarketCap | number | Market capitalization | 14684155308900.0 |
| URL | string | Trading Economics link to the instrument’s detail page | “/commodity/eggs-ch” |
| Importance | number | Indicator importance score ranging from 0 (lowest) to 1000 (highest) | 1000 |
| DailyChange | number | Absolute difference between previous close and current price | -8.00 |
| DailyPercentualChange | number | Percentage difference between previous close and current price | -0.1801 |
| WeeklyChange | number | Absolute difference between last week’s close and current price | 56.00 |
| WeeklyPercentualChange | number | Percentage difference between last week’s close and current price | 1.2788 |
| MonthlyChange | number | Absolute difference between last month’s close and current price | -139.00 |
| MonthlyPercentualChange | number | Percentage difference between last month’s close and current price | -3.0389 |
| YearlyChange | number | Absolute difference between last year’s close and current price | -15.00 |
| YearlyPercentualChange | number | Percentage difference between last year’s close and current price | -0.3371 |
| YTDChange | number | Absolute difference between last year’s final close and current price (YTD) | 525.00 |
| YTDPercentualChange | number | Percentage difference between last year’s final close and current price (YTD) | 13.4271 |
| day_high | number | Highest trading value of the current day | 4460.00 |
| day_low | number | Lowest trading value of the current day | 4410.00 |
| Yesterday | number | Previous day’s closing price | 4443.00 |
| LastWeek | number | Closing price from the previous week | 4379.00 |
| LastMonth | number | Closing price from the previous month | 4574.00 |
| LastYear | number | Closing price from the previous year | 4450.00 |
| StartYear | number | Closing price at the start of the current year | 3910.00 |
| ISIN | string | International Securities Identification Number | “US0378331005” |
| Unit | string | Unit of measurement for the value | “CNY/T” |
| Frequency | string | Reporting frequency of the market data | “Daily” |
| LastUpdate | string | Timestamp of the most recent data update (ISO 8601 format) | “2023-04-13T18:24:00” |
Relationship field available only in ‘Peers’ and ‘Components’
| Field | Type | Description | Example |
|---|---|---|---|
| Relationship | number | Indicates the relationship type: 0 = component, 1 = peer | 0 |