Snapshots Group
Get Economic Calendar snapshot by group.
By group
Get all calendar events by group (interest rate, inflation, bonds, consumer, gdp, government, housing, labour, markets, money, prices, trade, business)
import tradingeconomics as te
te.login('your_api_key')
te.getCalendarEventsByGroup(group='bonds')
const te = require('tradingeconomics');
te.login('your_api_key');
data = te.getCalendarEventsByGroup(group = 'bonds').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/calendar/group/bonds?c=guest:guest");
CalendarId | Date | Country | Category | Event | Reference | ReferenceDate | Source | SourceURL | Actual | Previous | Forecast | TEForecast | URL | DateSpan | Importance | LastUpdate | Revised | Currency | Unit | Ticker | Symbol |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
336497 | 1/9/2023 10:45:00 AM | European Union | Calendar | 20-Year Bond Auction | 3.128% | 2.845% | /european-union/calendar | 0 | 1 | 1/9/2023 10:54:57 AM | % | EUROPEANUCAL | EUROPEANUCAL | ||||||||
337124 | 1/9/2023 10:45:00 AM | European Union | Calendar | 3-Year Bond Auction | 2.827% | 2.530% | /european-union/calendar | 0 | 1 | 1/9/2023 10:54:48 AM | % | EUROPEANUCAL | EUROPEANUCAL | ||||||||
312686 | 1/9/2023 2:00:00 PM | France | 3 Month Bill Yield | 3-Month BTF Auction | Agence France Trésor | https://www.aft.gouv.fr | 2.164% | 2.096% | /france/3-month-bill-yield | 0 | 1 | 1/9/2023 1:58:35 PM | % | FRANCE3MONBILYIE | FRANCE3MONBILYIE |
/calendar/group/{group}/{yyyy-mm-dd}/{yyyy-mm-dd}
te.getCalendarEventsByGroup(group='bonds', initDate='2016-03-01',
endDate='2018-03-03')
te.getCalendarEventsByGroup(group='bonds', initDate='2016-03-01 00:00:00',
endDate='2018-03-03 23:59:59')
data = te.getCalendarEventsByGroup(group = 'bonds', start_date = '2016-03-01',
end_date = '2018-03-03').then(function(data){
console.log(data)
});
data = te.getCalendarEventsByGroup(group = 'bonds', start_date = '2016-03-01 00:00:00',
end_date = '2018-03-03 23:59:59').then(function(data){
console.log(data)
});
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/calendar/group/bonds/2016-03-01/2018-03-03?c=guest:guest");
WebRequest request = WebRequest.Create("https://api.tradingeconomics.com/calendar/group/bonds/2016-03-01%2000:00:00/2018-03-03%2023:59:59?c=guest:guest");
CalendarId | Date | Country | Category | Event | Reference | ReferenceDate | Source | SourceURL | Actual | Previous | Forecast | TEForecast | URL | DateSpan | Importance | LastUpdate | Revised | Currency | Unit | Ticker | Symbol |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
74633 | 3/1/2016 4:30:00 PM | United States | 4 Week Bill Yield | 4-Week Bill Auction | 3/31/2016 12:00:00 AM | Federal Reserve | https://www.treasurydirect.gov | 0.295% | 0.285% | 0.29% | /united-states/4-week-bill-yield | 0 | 1 | 3/1/2016 4:35:00 PM | % | UNITEDSTA4WEEBILYIE | UNITEDSTA4WEEBILYIE | ||||
99625 | 3/1/2016 4:30:00 PM | United States | 52 Week Bill Yield | 52-Week Bill Auction | Federal Reserve | https://www.treasurydirect.gov | 0.660% | 0.53% | /united-states/52-week-bill-yield | 0 | 1 | 3/1/2016 4:35:00 PM | % | UNITEDSTA52WEEBILYIE | UNITEDSTA52WEEBILYIE | ||||||
88956 | 3/2/2016 10:40:00 AM | Germany | 5 Year Note Yield | 5-Year Bobl Auction | Department of Treasury | https://www.deutsche-finanzagentur.de | -0.360% | -0.240% | /germany/5-year-note-yield | 0 | 1 | 3/2/2016 10:43:00 AM | % | GERMANY5YNY | GERMANY5YNY |