Music
Last.fm provides an API for music data, enabling access to artists, tracks, albums, and user information.
import requests
url = "https://ws.audioscrobbler.com/2.0/"
params = {
"method": "artist.getinfo",
"artist": "Radiohead",
"api_key": "YOUR_API_KEY",
"format": "json"
}
response = requests.get(url, params=params)
print(response.json())Last 50 checks (10 min intervals)