https://theeventscalendar.com/knowledgebase/k/using-tribe_get_events/
$events = tribe_get_events( [ 'posts_per_page' => 5 ] ); // Loop through the events, displaying the title and content for each foreach ( $events as $event ) { echo '<h4>' . $event->post_title . '</h4>'; echo get_the_permalink($event->ID);