Get json type billboard hot 100 chart, Data update every day !!
https://raw.githubusercontent.com/KoreanThinker/billboard-json/main/billboard-hot-100/recent.json
https://raw.githubusercontent.com/KoreanThinker/billboard-json/main/billboard-200/recent.json
https://raw.githubusercontent.com/KoreanThinker/billboard-json/main/billboard-global-200/recent.json
https://raw.githubusercontent.com/KoreanThinker/billboard-json/main/billboard-artist-100/recent.json
$ curl https://raw.githubusercontent.com/KoreanThinker/billboard-json/main/billboard-hot-100/recent.json
fetch('https://raw.githubusercontent.com/KoreanThinker/billboard-json/main/billboard-hot-100/recent.json')
.then(res => res.json())
.then(data => console.log(data))
{
"date": "YYYY-DD-MM",
"data": [
{
"name": "string",
"artist": "string",
"image": "string",
"rank": "number",
"last_week_rank": "number | null",
"peak_rank": "number",
"weeks_on_chart": "number"
},
"..."
]
}
{
"date": "YYYY-DD-MM",
"data": [
{
"name": "string",
"image": "string",
"rank": "number",
"last_week_rank": "number | null",
"peak_rank": "number",
"weeks_on_chart": "number"
},
"..."
]
}