python
<buttonGet Data❤</button>
<script>
let movieUrl = 'https://kobis.or.kr/kobisopenapi/webservice/rest/boxoffice/searchDailyBoxOfficeList.json?key=cdb98d81b9d2072f4c22c0e85d19d6d2&targetDt=20231001'
const getData = () => {
fetch(movieUrl)
.then(res=>res.json())
.then((data)=>{
let movieList = data.boxOfficeResult.dailyBoxOfficeList;
for(let i=0;i<movieList.length;i++){
console.log(movieList[i].rank,movieList[i].movieNm,movieList[0].openDt);
}
})
.catch((err)=>{
alert('에러입니다!')
console.log(err)
})
}
</script>
</body>
</html>