Skip to content

KoreanThinker/billboard-json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Billboard Hot 100 Billboard 200 Billboard Global 200 Billboard Artist 100

Stars Twitter

Billboard json

Get json type billboard hot 100 chart, Data update every day !!


Url

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

Usage

Curl

$ curl https://raw.githubusercontent.com/KoreanThinker/billboard-json/main/billboard-hot-100/recent.json

fetch

fetch('https://raw.githubusercontent.com/KoreanThinker/billboard-json/main/billboard-hot-100/recent.json')
  .then(res => res.json())
  .then(data => console.log(data))

Type

Billboard Hot 100, Billboard 200, Billboard Global 200

{
  "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"
    },
    "..."
  ]
}

Artist 100

{
  "date": "YYYY-DD-MM",
  "data": [
    {
      "name": "string",
      "image": "string",
      "rank": "number",
      "last_week_rank": "number | null",
      "peak_rank": "number",
      "weeks_on_chart": "number"
    },
    "..."
  ]
}