How to get variation’s price from its ID inside an ajax call

Solution:

You can also get a price base on variation id like this –

$price = get_post_meta($variation_id, '_price', true);
echo $price;

Might be can help you to fix for temporary