I finally managed to get to something displaying the top level forums. Guys it took me hours to do something so simple. Really should be part of the documentation somewhere. Pasting the code here in case if helps someone:
if (bbp_is_forum_archive()) {
$forums = bbp_get_forums_for_current_user();
echo '<ul>';
foreach ( $forums as $forum ) {
if ($forum->post_parent == 0) {
echo '<li><a href="' . bbp_get_forum_permalink($forum->ID) . '">';
echo $forum->post_title;
echo '</a></li>';
}
}
echo '</ul>';
}