Thumbnail Image Rounded Corners w CSS (or any other good method)

You can get the thumbnail URL with wp_get_attachment_image_src and get_post_thumbnail_id:

$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'thumbnail' );
echo $src[0];