How to get Tags with specific post id

Put this inside your loop:

//Returns All Term Items for "my_term"
$term_list = wp_get_post_terms($post->ID, 'post_tag', array("fields" => "all"));
print_r($term_list);

Slightly adapted from wp_get_post_terms