Calendar Introduction
The macroeconomic data calendar provides over 20 years of statistics from major countries worldwide. It covers three key categories: economic data, events, and holidays. Users can quickly locate required information using filters such as date, country, and importance level. The financial calendar not only organizes key details such as importance, previous values, forecasts, and actual releases, but also offers data interpretation to help users understand the potential market impact. Additionally, it supports automatic updates, ensuring users receive the latest and most accurate data immediately after release.
Calendar API
Economic Calendar - Daily Data
Interface Address
Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| token | string | Yes | API Access Token |
| date | string | Yes | Date (format: YYYY-MM-DD) |
Response Parameters
| Name | Description |
|---|---|
| code | Status Code |
| msg | Status Message |
| data | Data |
| ID | Record ID |
| IDX_ID | Indicator ID |
| COUNTRY_CN | Country |
| IDX_PERIOD | Indicator Period |
| IDX_PERIOD_STATUS | Indicator Period Status |
| IDX_DESC_CN | Indicator Description |
| PREVIOUS_PRICE | Previous Value |
| SURVEY_PRICE | Forecast Value |
| ACTUAL_PRICE | Actual Value |
| REVISED_PRICE | Revised Value |
| IDX_RELEVANCE | Importance |
| PUBLISH_TIME | Release Time |
| UNIT | Unit |
| GT_RES | Greater than forecast, bullish |
| LT_RES | Greater than forecast, bearish; Less than forecast, bullish |
| TITLE | Title |
Sample Response
{
"code": 200,
"msg": "",
"data": [
{
"ID": 595419,
"IDX_ID": "112022041910001492",
"COUNTRY_CN": "Country",
"IDX_PERIOD": "5 Month",
"IDX_PERIOD_STATUS": "",
"IDX_DESC_CN": "Indicator Description",
"PREVIOUS_PRICE": "1",
"SURVEY_PRICE": "",
"ACTUAL_PRICE": "1.2",
"REVISED_PRICE": "",
"IDX_RELEVANCE": "1",
"PUBLISH_TIME": "2026-05-28 07:01:00",
"UNIT": "%",
"GT_RES": "",
"LT_RES": "",
"TITLE": "Country 5Month Indicator Description"
}
]
}
Economic Events/Holidays
Interface Address
Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| token | string | Yes | API Access Token |
| type | int | Yes | 1=Holiday, 3=Financial Event |
| date | string | Yes | Date (format: YYYY-MM-DD) |
Response Parameters
| Name | Description |
|---|---|
| code | Status Code |
| msg | Status Message |
| data | Data |
| COUNTRY | Country |
| AREA | Area |
| EVENT_DESC | Content |
| EVENT_TIME | Event Time |
| IMPORTANCE | 1=Low, 2=Medium, 3=High |
| TIME_FLAG | 1=Time confirmed, 0=Time unconfirmed |
Sample Response
{
"code": 200,
"msg": "",
"data": [
{
"COUNTRY": "Country",
"AREA": "",
"EVENT_DESC": "Content",
"EVENT_TIME": "2026-05-28 01:00:00",
"IMPORTANCE": 2,
"TIME_FLAG": 1
}
]
}