List all Taylor Swift albums and fetch the songs in each one using the Taylor Swift API.
The Taylor Swift API gives you access to every studio album along with the tracks each one contains. Album IDs are stable integers, so you can safely store and reference them across requests.
Send a GET request to /albums/{albumID} with an album’s ID to retrieve its full tracklist. Each song object includes the song ID, title, and the album it belongs to.The example below fetches the tracklist for Midnights (album_id: 10).
Once you have a song_id from an album tracklist, you can pass it directly to the /lyrics/{songID} endpoint to retrieve the full lyrics for that track. See the lyrics guide for details.