Galera follows the code below that lists all. I need only the last given latitude and longitude
$conteudo = json_decode(file_get_contents('https://api.findmespot.com/spot-main-web/consumer/rest-api/2.0/public/feed/0ozWRQqxiMnv5bqJzSUIMyUIIbMGrP5qu/message.json'));
foreach ($conteudo->response->feedMessageResponse->messages->message as $key) {
print_r('Latitude: '.$key->latitude);
echo ' - ';
print_r('longitude: '.$key->longitude);
echo '<br>';
}