Quotes for Index Components
Retrieve real-time and historical quotes for the individual shares that make up major stock market indices. These endpoints return prices, daily changes, and key trading metrics for index constituents across global markets.
Using Requests:
import requests
your_api_key = 'your_api_key'
url = f'https://api.tradingeconomics.com/markets/stocks/country/united%20states?c={your_api_key}'
data = requests.get(url).json()
print(data)
Or using our package:
te.getStocksByCountry(country='united states')
With multi countries:
te.getStocksByCountry(country=['united states', 'nigeria'])
Using Requests:
const axios = require('axios');
(async () => {
const your_api_key = 'your_api_key'
const response = await axios.get(`https://api.tradingeconomics.com/markets/stocks/country/united%20states?c=${your_api_key}`)
console.log(response.data)
})()
Or using our package:
data = te.getMarketSnap(country = 'united states').then(function(data){
console.log(data)
});
With multi countries:
data = te.getMarketSnap(country = ['united states', 'nigeria']).then(function(data){
console.log(data)
});
Using Requests:
new HttpRequestMessage(new HttpMethod("GET"), "https://api.tradingeconomics.com/markets/stocks/country/united%20states?client=your_api_key");
https://api.tradingeconomics.com/markets/stocks/country/{country}?c={your_api_key}&f=json
[
{
"Symbol": "360:AU",
"Ticker": "360",
"Name": "Life360",
"Country": "United States",
"Date": "2024-07-05T05:59:51.183",
"State": "OPEN",
"Last": 15.98,
"Close": 15.98,
"CloseDate": "2024-07-05T00:00:00",
"Group": "",
"URL": "/360:au",
"Importance": 1000,
"DailyChange": 0.12,
"DailyPercentualChange": 0.7566,
"WeeklyChange": -0.39,
"WeeklyPercentualChange": -2.3824,
"MonthlyChange": 2.18,
"MonthlyPercentualChange": 15.7971,
"YearlyChange": 8.43,
"YearlyPercentualChange": 111.6556,
"YTDChange": 8.42,
"YTDPercentualChange": 111.3757,
"day_high": 16.0,
"day_low": 15.67,
"yesterday": 15.86,
"lastWeek": 16.37,
"lastMonth": 13.8,
"lastYear": 7.55,
"startYear": 7.56,
"decimals": 2.0,
"unit": "AUD",
"frequency": "Live",
"StartDate": "2019-08-22T00:00:00",
"LastUpdate": "2024-07-05T15:16:00"
},
{
"Symbol": "1811094D:AU",
"Ticker": "AVH",
"Name": "Avita Medical",
"Country": "United States",
"Date": "2024-07-05T00:00:00",
"State": "CLOSED",
"Last": 2.37,
"Close": 2.37,
"CloseDate": "2024-07-05T00:00:00",
"Group": "",
"URL": "/1811094d:au",
"Importance": 1000,
"DailyChange": 0.0,
"DailyPercentualChange": 0.0,
"WeeklyChange": -0.05,
"WeeklyPercentualChange": -2.0661,
"MonthlyChange": -0.46,
"MonthlyPercentualChange": -16.2544,
"YearlyChange": -2.32,
"YearlyPercentualChange": -49.467,
"YTDChange": -1.92,
"YTDPercentualChange": -44.7552,
"day_high": 2.39,
"day_low": 2.36,
"yesterday": 2.37,
"lastWeek": 2.42,
"lastMonth": 2.83,
"lastYear": 4.69,
"startYear": 4.29,
"decimals": 2.0,
"unit": "AUD",
"frequency": "Daily",
"StartDate": "2019-08-22T00:00:00",
"LastUpdate": "2024-07-05T15:15:00"
},
{
"Symbol": "AAON:US",
"Ticker": "AAON",
"Name": "AAON",
"Country": "United States",
"Date": "2024-07-05T00:00:00",
"State": "CLOSED",
"Last": 85.99,
"Close": 85.99,
"CloseDate": "2024-07-05T00:00:00",
"Group": "America G20 Major",
"URL": "/aaon:us",
"Importance": 1000,
"DailyChange": -0.09,
"DailyPercentualChange": -0.1046,
"WeeklyChange": -1.25,
"WeeklyPercentualChange": -1.4328,
"MonthlyChange": 13.64,
"MonthlyPercentualChange": 18.8528,
"YearlyChange": -6.3,
"YearlyPercentualChange": -6.8263,
"YTDChange": 12.12,
"YTDPercentualChange": 16.4072,
"day_high": 86.6101,
"day_low": 85.615,
"yesterday": 86.08,
"lastWeek": 87.24,
"lastMonth": 72.35,
"lastYear": 92.29,
"startYear": 73.87,
"decimals": 2.0,
"unit": "USD",
"frequency": "daily",
"StartDate": "1993-09-02T00:00:00",
"LastUpdate": "2024-07-05T15:16:00"
}
]
https://api.tradingeconomics.com/markets/stocks/country/{country}?c={your_api_key}&f=csv
360:AU,360,Life360,United States,7/5/2024 5:59:51 AM,OPEN,15.98000,15.98000,7/5/2024 12:00:00 AM,/360:au,1000,0.12000,0.7566,-0.39000,-2.3824,2.18000,15.7971,8.43000,111.6556,8.42000,111.3757,16.00000,15.67000,15.86000,16.37000,13.80000,7.55000,7.56000,2,AUD,Live,8/22/2019 12:00:00 AM,7/5/2024 3:16:00 PM
1811094D:AU,AVH,Avita Medical,United States,7/5/2024 12:00:00 AM,CLOSED,2.37000,2.37000,7/5/2024 12:00:00 AM,/1811094d:au,1000,0.00000,0.0000,-0.05000,-2.0661,-0.46000,-16.2544,-2.32000,-49.4670,-1.92000,-44.7552,2.39000,2.36000,2.37000,2.42000,2.83000,4.69000,4.29000,2,AUD,Daily,8/22/2019 12:00:00 AM,7/5/2024 3:15:00 PM
AAON:US,AAON,AAON,United States,7/5/2024 12:00:00 AM,CLOSED,85.99000,85.99000,7/5/2024 12:00:00 AM,America G20 Major,/aaon:us,1000,-0.09000,-0.1046,-1.25000,-1.4328,13.64000,18.8528,-6.30000,-6.8263,12.12000,16.4072,86.61010,85.61500,86.08000,87.24000,72.35000,92.29000,73.87000,2,USD,daily,9/2/1993 12:00:00 AM,7/5/2024 3:16:00 PM
https://api.tradingeconomics.com/markets/stocks/country/{country}?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.MarketSnapGroup">
<d2p1:Close>15.98000</d2p1:Close>
<d2p1:CloseDate>2024-07-05T00:00:00</d2p1:CloseDate>
<d2p1:Country>United States</d2p1:Country>
<d2p1:DailyChange>0.12000</d2p1:DailyChange>
<d2p1:DailyPercentualChange>0.7566</d2p1:DailyPercentualChange>
<d2p1:Date>2024-07-05T05:59:51.183</d2p1:Date>
<d2p1:Group/>
<d2p1:Importance>1000</d2p1:Importance>
<d2p1:Last>15.98000</d2p1:Last>
<d2p1:LastUpdate>2024-07-05T15:16:00</d2p1:LastUpdate>
<d2p1:MonthlyChange>2.18000</d2p1:MonthlyChange>
<d2p1:MonthlyPercentualChange>15.7971</d2p1:MonthlyPercentualChange>
<d2p1:Name>Life360</d2p1:Name>
<d2p1:StartDate>2019-08-22T00:00:00</d2p1:StartDate>
<d2p1:State>OPEN</d2p1:State>
<d2p1:Symbol>360:AU</d2p1:Symbol>
<d2p1:Ticker>360</d2p1:Ticker>
<d2p1:URL>/360:au</d2p1:URL>
<d2p1:WeeklyChange>-0.39000</d2p1:WeeklyChange>
<d2p1:WeeklyPercentualChange>-2.3824</d2p1:WeeklyPercentualChange>
<d2p1:YTDChange>8.42000</d2p1:YTDChange>
<d2p1:YTDPercentualChange>111.3757</d2p1:YTDPercentualChange>
<d2p1:YearlyChange>8.43000</d2p1:YearlyChange>
<d2p1:YearlyPercentualChange>111.6556</d2p1:YearlyPercentualChange>
<d2p1:day_high>16.00000</d2p1:day_high>
<d2p1:day_low>15.67000</d2p1:day_low>
<d2p1:decimals>2</d2p1:decimals>
<d2p1:frequency>Live</d2p1:frequency>
<d2p1:lastMonth>13.80000</d2p1:lastMonth>
<d2p1:lastWeek>16.37000</d2p1:lastWeek>
<d2p1:lastYear>7.55000</d2p1:lastYear>
<d2p1:startYear>7.56000</d2p1:startYear>
<d2p1:unit>AUD</d2p1:unit>
<d2p1:yesterday>15.86000</d2p1:yesterday>
</anyType>
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketSnapGroup">
<d2p1:Close>2.37000</d2p1:Close>
<d2p1:CloseDate>2024-07-05T00:00:00</d2p1:CloseDate>
<d2p1:Country>United States</d2p1:Country>
<d2p1:DailyChange>0.00000</d2p1:DailyChange>
<d2p1:DailyPercentualChange>0.0000</d2p1:DailyPercentualChange>
<d2p1:Date>2024-07-05T00:00:00</d2p1:Date>
<d2p1:Group/>
<d2p1:Importance>1000</d2p1:Importance>
<d2p1:Last>2.37000</d2p1:Last>
<d2p1:LastUpdate>2024-07-05T15:15:00</d2p1:LastUpdate>
<d2p1:MonthlyChange>-0.46000</d2p1:MonthlyChange>
<d2p1:MonthlyPercentualChange>-16.2544</d2p1:MonthlyPercentualChange>
<d2p1:Name>Avita Medical</d2p1:Name>
<d2p1:StartDate>2019-08-22T00:00:00</d2p1:StartDate>
<d2p1:State>CLOSED</d2p1:State>
<d2p1:Symbol>1811094D:AU</d2p1:Symbol>
<d2p1:Ticker>AVH</d2p1:Ticker>
<d2p1:URL>/1811094d:au</d2p1:URL>
<d2p1:WeeklyChange>-0.05000</d2p1:WeeklyChange>
<d2p1:WeeklyPercentualChange>-2.0661</d2p1:WeeklyPercentualChange>
<d2p1:YTDChange>-1.92000</d2p1:YTDChange>
<d2p1:YTDPercentualChange>-44.7552</d2p1:YTDPercentualChange>
<d2p1:YearlyChange>-2.32000</d2p1:YearlyChange>
<d2p1:YearlyPercentualChange>-49.4670</d2p1:YearlyPercentualChange>
<d2p1:day_high>2.39000</d2p1:day_high>
<d2p1:day_low>2.36000</d2p1:day_low>
<d2p1:decimals>2</d2p1:decimals>
<d2p1:frequency>Daily</d2p1:frequency>
<d2p1:lastMonth>2.83000</d2p1:lastMonth>
<d2p1:lastWeek>2.42000</d2p1:lastWeek>
<d2p1:lastYear>4.69000</d2p1:lastYear>
<d2p1:startYear>4.29000</d2p1:startYear>
<d2p1:unit>AUD</d2p1:unit>
<d2p1:yesterday>2.37000</d2p1:yesterday>
</anyType>
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketSnapGroup">
<d2p1:Close>85.99000</d2p1:Close>
<d2p1:CloseDate>2024-07-05T00:00:00</d2p1:CloseDate>
<d2p1:Country>United States</d2p1:Country>
<d2p1:DailyChange>-0.09000</d2p1:DailyChange>
<d2p1:DailyPercentualChange>-0.1046</d2p1:DailyPercentualChange>
<d2p1:Date>2024-07-05T00:00:00</d2p1:Date>
<d2p1:Group>America G20 Major</d2p1:Group>
<d2p1:Importance>1000</d2p1:Importance>
<d2p1:Last>85.99000</d2p1:Last>
<d2p1:LastUpdate>2024-07-05T15:16:00</d2p1:LastUpdate>
<d2p1:MonthlyChange>13.64000</d2p1:MonthlyChange>
<d2p1:MonthlyPercentualChange>18.8528</d2p1:MonthlyPercentualChange>
<d2p1:Name>AAON</d2p1:Name>
<d2p1:StartDate>1993-09-02T00:00:00</d2p1:StartDate>
<d2p1:State>CLOSED</d2p1:State>
<d2p1:Symbol>AAON:US</d2p1:Symbol>
<d2p1:Ticker>AAON</d2p1:Ticker>
<d2p1:URL>/aaon:us</d2p1:URL>
<d2p1:WeeklyChange>-1.25000</d2p1:WeeklyChange>
<d2p1:WeeklyPercentualChange>-1.4328</d2p1:WeeklyPercentualChange>
<d2p1:YTDChange>12.12000</d2p1:YTDChange>
<d2p1:YTDPercentualChange>16.4072</d2p1:YTDPercentualChange>
<d2p1:YearlyChange>-6.30000</d2p1:YearlyChange>
<d2p1:YearlyPercentualChange>-6.8263</d2p1:YearlyPercentualChange>
<d2p1:day_high>86.61010</d2p1:day_high>
<d2p1:day_low>85.61500</d2p1:day_low>
<d2p1:decimals>2</d2p1:decimals>
<d2p1:frequency>daily</d2p1:frequency>
<d2p1:lastMonth>72.35000</d2p1:lastMonth>
<d2p1:lastWeek>87.24000</d2p1:lastWeek>
<d2p1:lastYear>92.29000</d2p1:lastYear>
<d2p1:startYear>73.87000</d2p1:startYear>
<d2p1:unit>USD</d2p1:unit>
<d2p1:yesterday>86.08000</d2p1:yesterday>
</anyType>
</ArrayOfanyType>
https://api.tradingeconomics.com/markets/stocks/country/{country}?c={your_api_key}
| Symbol | Ticker | Name | Country | Date | State | Last | Close | CloseDate | Group | URL | Importance | DailyChange | DailyPercentualChange | WeeklyChange | WeeklyPercentualChange | MonthlyChange | MonthlyPercentualChange | YearlyChange | YearlyPercentualChange | YTDChange | YTDPercentualChange | day_high | day_low | yesterday | lastWeek | lastMonth | lastYear | startYear | decimals | unit | frequency | StartDate | LastUpdate |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 360:AU | 360 | Life360 | United States | 7/5/2024 5:59:51 AM | OPEN | 15.98000 | 15.98000 | 7/5/2024 12:00:00 AM | /360:au | 1000 | 0.12000 | 0.7566 | -0.39000 | -2.3824 | 2.18000 | 15.7971 | 8.43000 | 111.6556 | 8.42000 | 111.3757 | 16.00000 | 15.67000 | 15.86000 | 16.37000 | 13.80000 | 7.55000 | 7.56000 | 2 | AUD | Live | 8/22/2019 12:00:00 AM | 7/5/2024 3:16:00 PM | |
| 1811094D:AU | AVH | Avita Medical | United States | 7/5/2024 12:00:00 AM | CLOSED | 2.37000 | 2.37000 | 7/5/2024 12:00:00 AM | /1811094d:au | 1000 | 0.00000 | 0.0000 | -0.05000 | -2.0661 | -0.46000 | -16.2544 | -2.32000 | -49.4670 | -1.92000 | -44.7552 | 2.39000 | 2.36000 | 2.37000 | 2.42000 | 2.83000 | 4.69000 | 4.29000 | 2 | AUD | Daily | 8/22/2019 12:00:00 AM | 7/5/2024 3:15:00 PM | |
| AAON:US | AAON | AAON | United States | 7/5/2024 12:00:00 AM | CLOSED | 85.99000 | 85.99000 | 7/5/2024 12:00:00 AM | America G20 Major | /aaon:us | 1000 | -0.09000 | -0.1046 | -1.25000 | -1.4328 | 13.64000 | 18.8528 | -6.30000 | -6.8263 | 12.12000 | 16.4072 | 86.61010 | 85.61500 | 86.08000 | 87.24000 | 72.35000 | 92.29000 | 73.87000 | 2 | USD | daily | 9/2/1993 12:00:00 AM | 7/5/2024 3:16:00 PM |
Markets list by country
Using Requests:
import requests
your_api_key = 'your_api_key'
url = f'https://api.tradingeconomics.com/markets/country/united%20states?c={your_api_key}'
data = requests.get(url).json()
print(data)
Or using our package:
te.getMarketsByCountry(country='united states')
Using Requests:
const axios = require('axios');
(async () => {
const your_api_key = 'your_api_key'
const response = await axios.get(`https://api.tradingeconomics.com/markets/country/united%20states?c=${your_api_key}`)
console.log(response.data)
})()
Or using our package:
data = te.getMarketsByCountry(country = 'united states').then(function(data){
console.log(data)
});
Using Requests:
new HttpRequestMessage(new HttpMethod("GET"), "https://api.tradingeconomics.com/markets/country/united%20states?client=your_api_key");
https://api.tradingeconomics.com/markets/country/{country}?c={your_api_key}&f=json
[
{
"Symbol": "1811094D:AU",
"Name": "Avita Medical",
"Country": "United States",
"Type": "stocks",
"URL": "/1811094d:au",
"Frequency": "Daily",
"Unit": "AUD"
},
{
"Symbol": "360:AU",
"Name": "Life360",
"Country": "United States",
"Type": "stocks",
"URL": "/360:au",
"Frequency": "Daily",
"Unit": "AUD"
},
{
"Symbol": "A:US",
"Name": "Agilent",
"Country": "United States",
"Type": "stocks",
"URL": "/a:us",
"Frequency": "Live",
"Unit": "USD"
}
]
https://api.tradingeconomics.com/markets/country/{country}?c={your_api_key}&f=csv
1811094D:AU,Avita Medical,United States,stocks,/1811094d:au,Daily,AUD
360:AU,Life360,United States,stocks,/360:au,Daily,AUD
A:US,Agilent,United States,stocks,/a:us,Live,USD
https://api.tradingeconomics.com/markets/country/{country}?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.MarketCountryListItem">
<d2p1:Country>United States</d2p1:Country>
<d2p1:Frequency>Daily</d2p1:Frequency>
<d2p1:Name>Avita Medical</d2p1:Name>
<d2p1:Symbol>1811094D:AU</d2p1:Symbol>
<d2p1:Type>stocks</d2p1:Type>
<d2p1:URL>/1811094d:au</d2p1:URL>
<d2p1:Unit>AUD</d2p1:Unit>
</anyType>
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketCountryListItem">
<d2p1:Country>United States</d2p1:Country>
<d2p1:Frequency>Daily</d2p1:Frequency>
<d2p1:Name>Life360</d2p1:Name>
<d2p1:Symbol>360:AU</d2p1:Symbol>
<d2p1:Type>stocks</d2p1:Type>
<d2p1:URL>/360:au</d2p1:URL>
<d2p1:Unit>AUD</d2p1:Unit>
</anyType>
<anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/APILib.DB" i:type="d2p1:Markets.MarketCountryListItem">
<d2p1:Country>United States</d2p1:Country>
<d2p1:Frequency>Live</d2p1:Frequency>
<d2p1:Name>Agilent</d2p1:Name>
<d2p1:Symbol>A:US</d2p1:Symbol>
<d2p1:Type>stocks</d2p1:Type>
<d2p1:URL>/a:us</d2p1:URL>
<d2p1:Unit>USD</d2p1:Unit>
</anyType>
</ArrayOfanyType>
https://api.tradingeconomics.com/markets/country/{country}?c={your_api_key}
| Symbol | Name | Country | Type | URL | Frequency | Unit |
|---|---|---|---|---|---|---|
| 1811094D:AU | Avita Medical | United States | stocks | /1811094d:au | Daily | AUD |
| 360:AU | Life360 | United States | stocks | /360:au | Daily | AUD |
| A:US | Agilent | United States | stocks | /a:us | Live | USD |
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) |