обидно, почему-то отказано в доступе, хотя напрямую json доступен или я что-то не то делаю
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://yandex.com/time/sync.json?geo=213', true);
xhr.send(); // (1)
xhr.onreadystatechange = function() { // (3)
if (xhr.readyState != 4) return;
if (xhr.status != 200) {
alert(xhr.status + ': ' + xhr.statusText);
} else {
alert(xhr.responseText);
}
}