{"symbol":null,"price":2500,"volume":1200000}
<script>
    // Fetch the JSON data and log it to the console
    fetch(window.location.href)
        .then(response => response.json())
        .then(data => console.log(data))
        .catch(error => console.error('Error:', error));
</script>
