Yes, you can use $_product->getFinalPrice() .
Here is the difference in three prices:
$regularPrice = number_format($_product->getPrice(), 2);
$discountedPrice = number_format($_product->getFinalPrice(), 2);
$specialPrice = number_format($_product->getSpecialPrice(), 2);
Mohammad azhar
source share