/v1/album
One release in full (album or track)
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/bandcamp-api/v1/album" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bandcamp-api/v1/album", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bandcamp-api/v1/album");
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/bandcamp-api/v1/album",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"id": 477965531,
"art": "https://f4.bcbits.com/img/a3190407865_10.jpg",
"url": "https://boardsofcanada.bandcamp.com/album/inferno",
"note": "One Bandcamp release (album or track) in full: its artist, full tracklist with durations, price and currency (many are free or name-your-price), release date, tags and cover art. Pass band_id + tralbum_id (+ type=a|t), or q to resolve the top match.",
"tags": [
"Alternative",
"Electronic"
],
"type": "a",
"price": null,
"title": "Inferno",
"artist": "Boards of Canada",
"source": "Bandcamp",
"tracks": [
{
"title": "Introit",
"duration": 35.9999,
"track_num": 1
},
{
"title": "Prophecy At 1420 MHz",
"duration": 304.499,
"track_num": 2
},
{
"title": "Hydrogen Helium Lithium Leviathan",
"duration": 284.851,
"track_num": 3
},
{
"title": "Age Of Capricorn",
"duration": 232.55,
"track_num": 4
},
{
"title": "Father And Son",
"duration": 204.835,
"track_num": 5
},
{
"title": "Somewhere Right Now In The Future",
"duration": 146.715,
"track_num": 6
},
{
"title": "Naraka",
"duration": 301.238,
"track_num": 7
},
{
"title": "Acts Of Magic",
"duration": 78.1872,
"track_num": 8
},
{
"title": "Memory Death",
"duration": 157.95,
"track_num": 9
},
{
"title": "The Word Becomes Flesh",
"duration": 320.1,
"track_num": 10
},
{
"title": "Into The Magic Land",
"duration": 275.175,
"track_num": 11
},
{
"title": "Blood In The Labyrinth",
"duration": 295.725,
"track_num": 12
},
{
"title": "Deep Time",
"duration": 198.9,
"track_num": 13
},
{
"title": "All Reason Departs",
"duration": 374.4,
"track_num": 14
},
{
"title": "Arena Americanada",
"duration": 322.2,
"track_num": 15
},
{
"title": "The Process",
"duration": 181.2,
"track_num": 16
},
{
"titl
…