fetch('http://www.***.com/hyst/acore.php')
		  .then(function(response) {
			alert(response.headers.get('application/json; charset=utf-8')); charset=utf-8
			alert(response.status); // 200
			return response.json();
		   })
		  .then(function(data) {
			alert(data.id); // iliakan
		  })
		  .catch( alert );