Μετάβαση στο περιεχόμενο
GET /v1/artist/videos

An artist's music videos

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/audiodb-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "count": 60,
        "videos": [
            {
                "thumb": "https://r2.theaudiodb.com/images/media/track/thumb/xtqyxy1340357946.jpg",
                "track": "Princess of China",
                "track_id": "32724200",
                "description": "\"Princess of China\" is a song by British alternative rock band Coldplay with guest vocals by Barbadian recording artist Rihanna. It is the tenth track from Coldplay's fifth studio album Mylo Xyloto (2011). \"Princess of China\" was written by band members Guy Berryman, Jonny Buckland, Will Champion, and Chris Martin, along with Brian Eno, and draws influences from the music genres of electronic rock, electropop and R&B. The song released to US mainstream radio on 14 February 2012. It was released as a digital download worldwide on 13 April 2012. A remixes EP was released worldwide on 1 June 2012. It was released in the UK on 4 June 2012.\n\nThe song was met with a generally favorable response from music critics, with some praising the collaboration between Martin and Rihanna, though others criticized it for being uninspiring. \"Princess of China\" has performed well on international charts around the world, and has so far peaked at number 20 on the US Billboard Hot 100 and number four on the UK Singles Chart. It has also reached the top ten of the Australian and New Zealand charts.\n\nThe song's accompanying music video, directed by Adria Petty and Alan Bibby, was filmed on 22 March and 23 March 2012 in Los Angeles. The video was released on 2 June 2012.",
                "music_video": "http://www.youtube.com/watch?v=1Uw6ZkbsAH8"
            },
            {
                "thumb": "https://r2.theaudiodb.com/images/media/track/thumb/vrppvu1340357149.jpg",
                "track": "Viva la Vida",
                "track_id": "32724211",
                "description": "\"Viva la Vida\", is a song by the British alternative rock band Coldplay. It was written by all members of the band for their fourth album, Viva la Vida or Death and All His Friends (2008), and was released as the second single from the album. On the album, this song segues directly into the next track, \"Violet Hill\". Viva la Vida means \"Long Live Life\" in Spanish.\n\nThe lyrics to the song contain historical and Christian references, and the track is built around a repeating string section with a percussion background.\nThe song was released on 13 June 2008 as the album's second single, debuting to critical and commercial success. \"Viva la Vida\" reached the top spot of the UK Singles Chart and Billboard Hot 100, becoming the band's first number-one single in both the US and UK. The song won the Grammy Award for Song of the Year at the 51st Grammy Awards in 2009. \n\nThe song became the sixth song in digital history to reach the 4 million mark in paid downloads. It has sold 5.2 million copies in the United States by November 2011, becoming the third best-selling song by a British act in the
…