How do i get the link of the assigned taxonomy term?

If you want to display links to each category, separated by spaces, use get_the_term_list():

<?php echo get_the_term_list( null, 'blog-category', '', ' ', '' ); ?>

If you have an individual term whose link you want to get, use get_term_link():

$url = get_term_link( $term );