Real-time Bangkok cinema showtimes updated daily at 7:35 AM
https://benchesters.github.io/sf-cinema-scraper/api/cinema.json
fetch('https://benchesters.github.io/sf-cinema-scraper/api/cinema.json')
.then(r => r.json())
.then(data => {
console.log(data);
// Access Terminal 21 movies:
const t21Movies = data['9924'].movies;
});