/v1/billboard-200
The Billboard 200 (albums)
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/billboard-api/v1/billboard-200" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/billboard-api/v1/billboard-200", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/billboard-api/v1/billboard-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/billboard-200",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"chart": "billboard-200",
"count": 200,
"title": "The Billboard 200 — top albums",
"entries": [
{
"rank": 1,
"image": "https://charts-static.billboard.com/img/2026/05/drake-v3o-iceman-s2k-180x180.jpg",
"title": "ICEMAN",
"artist": "Drake",
"last_week": 1,
"peak_position": 1,
"weeks_on_chart": 2
},
{
"rank": 2,
"image": "https://charts-static.billboard.com/img/2026/04/ellalangley-0yx-dandelion-1tg-180x180.jpg",
"title": "Dandelion",
"artist": "Ella Langley",
"last_week": 5,
"peak_position": 1,
"weeks_on_chart": 7
},
{
"rank": 3,
"image": "https://charts-static.billboard.com/img/2026/05/noah-kahan-h8e-thegreatdivide-uy9-180x180.jpg",
"title": "The Great Divide",
"artist": "Noah Kahan",
"last_week": 4,
"peak_position": 1,
"weeks_on_chart": 5
},
{
"rank": 4,
"image": "https://charts-static.billboard.com/img/2025/05/morgan-wallen-eos-imtheproblem-0k1-180x180.jpg",
"title": "I'm The Problem",
"artist": "Morgan Wallen",
"last_week": 6,
"peak_position": 1,
"weeks_on_chart": 54
},
{
"rank": 5,
"image": "https://charts-static.billboard.com/img/1982/12/michael-jackson-y4h-thriller-49d-180x180.jpg",
"title": "Thriller",
"artist": "Michael Jackson",
"last_week": 7,
"peak_position": 1,
"weeks_on_chart": 720
},
{
"rank": 6,
"image": "https://charts-static.billboard.com/img/2003/12/michael-jackson-y4h-numberones-8w4-180x180.jpg",
"title": "Number Ones",
"artist": "Michael Jackson",
"last_week": 8,
"peak_position": 6,
"weeks_on_chart": 239
},
{
"rank": 7,
"image": "https://charts-static.billboard.com/img/2026/05/drake-v3o-habibti-whz-180x180.jpg",
"title": "HABIBTI",
"artist": "Drake",
"last_week": 2,
"peak_position": 2,
"weeks_on_chart": 2
},
{
"rank": 8,
"image": "https://charts-static.billboard.com/img/2026/05/drake-v3o-maidofhonour-g3g-180x180.jpg",
"title": "MAID OF HONOUR",
"artist": "Drake",
"last_week": 3,
"peak_position": 3,
"weeks_on_chart": 2
…