서울시 미세먼지 데이터
http://openapi.seoul.go.kr:8088/6d4d776b466c656533356a4b4b5872/json/RealtimeCityAir/1/99
🔻fetch 기본 골격
fetch("경로").then(res => res.json()).then((data) => {
console.log(data);
});
경로 위치에 서울시 미세먼지 데이터 url을 넣는다.
🔻사용 예시
fetch("http://openapi.seoul.go.kr:8088/6d4d776b466c656533356a4b4b5872/json/RealtimeCityAir/1/99").then(res => res.json()).then((data) => {
console.log(data['RealtimeCityAir']['list_total_count']);
});