Economic Calendar API


OVERVIEW
This is an economic calendar that returns all of the world's major economic events and numbers. It has a significant impact on currency and stock market prices. It returns fields such as the name of the event, the country, the previous and current value of the event, and more. Every 15 minutes, the calendar is updated.

You can also look at our other calendar endpoints, such as the earnings or dividend calendars.

Query String Parameters
from : YYYY-MM-DD
to : YYYY-MM-DD

Economic Calendar API


OVERVIEW
This is an economic calendar that returns all of the world's major economic events and numbers. It has a significant impact on currency and stock market prices. It returns fields such as the name of the event, the country, the previous and current value of the event, and more. Every 15 minutes, the calendar is updated.

You can also look at our other calendar endpoints, such as the earnings or dividend calendars.

Query String Parameters
from : YYYY-MM-DD
to : YYYY-MM-DD

Economic Calendar

https://financialmodelingprep.com/api/v3/economic_calendar?from=2020-08-05&to=2020-10-20&apikey=YOUR_API_KEY

curl https://financialmodelingprep.com/api/v3/economic_calendar?from=2021-09-05&to=2021-10-19&apikey=YOUR_API_KEY
[ {
    "event" : "Net Long-Term Tic Flows (Aug)",
    "date" : "2021-10-18 21:00:00",
    "country" : "US",
    "actual" : 79.3,
    "previous" : 2,
    "change" : 77.3,
    "changePercentage" : 3865.0,
    "estimate" : null,
    "impact" : "Medium"
  }, {
    "event" : "Foreign Bond Investment (Aug)",
    "date" : "2021-10-18 21:00:00",
    "country" : "US",
    "actual" : 30.7,
    "previous" : 10.2,
    "change" : 20.5,
    "changePercentage" : 200.98,
    "estimate" : null,
    "impact" : "Medium"
  }, {
    "event" : "Overall Net Capital Flows (Aug)",
    "date" : "2021-10-18 21:00:00",
    "country" : "US",
    "actual" : 91,
    "previous" : 164.1,
    "change" : -73.1,
    "changePercentage" : 44.546,
    "estimate" : null,
    "impact" : "Medium"
  }, ...
]

ECONOMIC_CALENDAR_WITH JAVA


URL url = new URL("https://financialmodelingprep.com/api/v3/economic_calendar?from=2020-08-05&to=2020-10-20&apikey=YOUR_API_KEY");

try (BufferedReader reader = new BufferedReader(new InputStreamReader(url.openStream(), "UTF-8"))) {
    for (String line; (line = reader.readLine()) != null;) {
    System.out.println(line);
  }
}
Resource List :