Hi Devashish,
Great question – though please note that we are unable to go into too much depth for custom development issues.
That said, utilizing our tribe_get_events() function (which accepts many of the same arguments as does get_posts()) would be an easy way to obtain the list, using code looking something like this:
$event_list = tribe_get_events( array(
'eventDisplay' => 'list',
'posts_per_page' => -1
) );
foreach ( $event_list as $event ) {
echo "
<p> {$event->post_title}
{$event->EventStartDate} </p>
";
}
Of course, you would need to expand on that to fit your exact needs (also, this third party plugin – which we don’t support here – provides a shortcode to let you do things like this, if you prefer that sort of approach).
I hope that gets you started – and good luck!