Get the bare URL for an attachment

What about using wp_get_attachment_image_src?

Using wp_get_attachment_image_src:

$src = wp_get_attachment_image_src( $img_id, 'thumbnail' );
$src = $src[0]; // Grabs only the URL ($src[1] = width of image, $src[2] = height of image)