Simple API to retrieve the lyrics of a song
Retrieves song lyrics using a simple API by providing the artist and song title.
import requests
artist = "coldplay"
title = "paradise"
response = requests.get(f"https://api.lyrics.ovh/v1/{artist}/{title}")
print(response.json())Last 50 checks (10 min intervals)