Ir al contenido
GET /v1/artist-100

Artist 100

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/billboard-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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,
              
…