How to import the data to the post from an external URL?

Just use PHP code, for example :

$price = floatval( file_get_contents( 'http://35.204.111.14/price' ) );
echo $price;

floatval is here to sanitize and assure you to have a float number.