Visualizzazione Dati JSON
Caricamento dati...
const apiUrl = 'https://zinrec.intervieweb.it/annunci.php?lang=it&LAC=microdisegno&d=microdisegno.com&k=9c1fcd0e656ed175384cad5f8076e4e4&format=json_en&utype=0';
fetch(apiUrl)
.then(response => {
if (!response.ok) {
throw new Error(`Errore HTTP! Status: ${response.status}`);
}
return response.json();
})
.then(data => {
document.getElementById('json-output').textContent = JSON.stringify(data, null, 2);
})
.catch(error => {
console.error('Errore nel recuperare il JSON:', error);
document.getElementById('json-output').textContent = '';
document.getElementById('error-message').style.display = 'block';
});
zinrec | Annunci