/v1/artist-100
Artist 100
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/billboard-api/v1/artist-100" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/billboard-api/v1/artist-100", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/billboard-api/v1/artist-100");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/billboard-api/v1/artist-100",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"chart": "artist-100",
"count": 100,
"title": "Artist 100 — most popular artists",
"entries": [
{
"rank": 1,
"image": "https://charts-static.billboard.com/img/2009/12/drake-v3o-artistchart-ivu-180x180.jpg",
"title": "Drake",
"artist": "Drake",
"last_week": 1,
"peak_position": 1,
"weeks_on_chart": 620
},
{
"rank": 2,
"image": "https://charts-static.billboard.com/img/1972/12/michael-jackson-y4h-artistchart-fuf-180x180.jpg",
"title": "Michael Jackson",
"artist": "Michael Jackson",
"last_week": 2,
"peak_position": 1,
"weeks_on_chart": 532
},
{
"rank": 3,
"image": "https://charts-static.billboard.com/img/2018/01/morgan-wallen-eos-artistchart-g3r-180x180.jpg",
"title": "Morgan Wallen",
"artist": "Morgan Wallen",
"last_week": 3,
"peak_position": 1,
"weeks_on_chart": 377
},
{
"rank": 4,
"image": "https://charts-static.billboard.com/img/2024/07/ellalangley-0yx-artistchart-r6e-180x180.jpg",
"title": "Ella Langley",
"artist": "Ella Langley",
"last_week": 4,
"peak_position": 1,
"weeks_on_chart": 90
},
{
"rank": 5,
"image": "https://charts-static.billboard.com/img/2019/06/noah-kahan-h8e-artistchart-tmb-180x180.jpg",
"title": "Noah Kahan",
"artist": "Noah Kahan",
"last_week": 5,
"peak_position": 1,
"weeks_on_chart": 147
},
{
"rank": 6,
"image": "https://charts-static.billboard.com/img/2010/12/bruno-mars-8dl-artistchart-f6p-180x180.jpg",
"title": "Bruno Mars",
"artist": "Bruno Mars",
"last_week": 6,
"peak_position": 1,
"weeks_on_chart": 600
},
{
"rank": 7,
"image": "https://charts-static.billboard.com/img/2017/03/luke-combs-s5l-artistchart-zlq-180x180.jpg",
"title": "Luke Combs",
"artist": "Luke Combs",
"last_week": 7,
"peak_position": 1,
"weeks_on_chart": 482
},
{
"rank": 8,
"image": "https://charts-static.billboard.com/img/2025/09/oliviadean-8k4-artistchart-081-180x180.jpg",
"title": "Olivia Dean",
"artist": "Olivia Dean",
"last_week": 8,
"peak_position": 3,
…