Get Events Call From Wordpress?

Is is possible to make a call to get the events between a start and end date? I’m able to query the database directly to get single events, but I need to be able to get recurring events that fall between the dates as well.

Another option would be if I could force recurring events to make entries in the db for each occurrence. Is there a way to set recurring entries to make an entry for each?

Thanks in advance.

Check event-calendar-scheduler\SchedulerHelper.php

With it you can use

$helper = new SchedulerHelper($db, $table);
$events = $helper->get_dates(start_date, end_date);