$.each($.getJSON('https://Site.com/data.json', function(data) {
$.each(data,function(s1, key) {
$.each(key[1],function(s2, key2) {
$.each(key,function(s3, key3) {
$.each(key3,function(s4, key4) {
$.each(key4['chat'],function(s5, key5) {
console.log('ID: ' + key5);
});
}); });});
});
}));
ID: -336393273
ID: fdf
ID: group
ID: true
<script>
var json = $.getJSON('https://site.com/data.json');
$.each( json.result , function(key, value) {
let chatId = value.message.chat.id;
$('#select').append('<option>' + chatId+ '</option>');
});
</script>