Aller au contenu
GET /v1/global-200

Billboard Global 200

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/billboard-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/billboard-api/v1/global-200" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/billboard-api/v1/global-200", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/billboard-api/v1/global-200");
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/global-200",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "chart": "billboard-global-200",
        "count": 200,
        "title": "Billboard Global 200",
        "entries": [
            {
                "rank": 1,
                "image": "https://charts-static.billboard.com/img/2009/04/drake-v3o-180x180.jpg",
                "title": "Janice STFU",
                "artist": "Drake",
                "last_week": 1,
                "peak_position": 1,
                "weeks_on_chart": 2
            },
            {
                "rank": 2,
                "image": "https://charts-static.billboard.com/img/2026/06/oliviarodrigo-3wl-thecure-gac-180x180.jpg",
                "title": "The Cure",
                "artist": "Olivia Rodrigo",
                "last_week": null,
                "peak_position": 2,
                "weeks_on_chart": 1
            },
            {
                "rank": 3,
                "image": "https://charts-static.billboard.com/img/2009/07/michael-jackson-y4h-billiejean-u1v-180x180.jpg",
                "title": "Billie Jean",
                "artist": "Michael Jackson",
                "last_week": 8,
                "peak_position": 1,
                "weeks_on_chart": 146
            },
            {
                "rank": 4,
                "image": "https://charts-static.billboard.com/img/2026/03/bts-jtk-swim-8po-180x180.jpg",
                "title": "Swim",
                "artist": "BTS",
                "last_week": 10,
                "peak_position": 1,
                "weeks_on_chart": 10
            },
            {
                "rank": 5,
                "image": "https://charts-static.billboard.com/img/2025/10/tame-impala-nyr-dracula-y03-180x180.jpg",
                "title": "Dracula",
                "artist": "Tame Impala & JENNIE",
                "last_week": 13,
                "peak_position": 2,
                "weeks_on_chart": 33
            },
            {
                "rank": 6,
                "image": "https://charts-static.billboard.com/img/2012/07/justin-bieber-dj8-beautyandabeat-3bw-180x180.jpg",
                "title": "Beauty And A Beat",
                "artist": "Justin Bieber Featuring Nicki Minaj",
                "last_week": 14,
                "peak_position": 1,
                "weeks_on_chart": 7
            },
            {
                "rank": 7,
                "image": "https://charts-static.billboard.com/img/2025/11/ellalangley-0yx-choosintexas-bss-180x180.jpg",
                "title": "Choosin' Texas",
                "artist": "Ella Langley",
                "last_week": 18,
                "peak_position": 5,
                "weeks_on_chart": 31
            },
            {
                "rank": 8,
                "image": "https://charts-static.billboard.com/img/2009/07/michael-jackson-y4h-beatit-qy3-180x180.jpg",
                "title": "Beat It",
                "artist": "Michael Jackson",
                "last_week": 17,
                "peak_position": 5,
                "weeks
…