Lyrics
Description: Displays song lyrics along with artist information and music details.
API Response Structure:
{
"song": {
"title": "Song Title",
"artist": "Artist Name",
"album": "Album Name",
"releaseYear": "2023",
"lyrics": [
"Verse 1 lyrics here",
"Chorus lyrics here"
]
},
"attribution": {
"source": "LyricProvider",
"url": "https://example.com/lyrics"
},
"type": "instantAnswers",
"configType": "lyrics"
}
Fields:
-
song
(object): Song information-
title
(string): Song title -
artist
(string): Artist name -
album
(string): Album name -
releaseYear
(string): Release year -
lyrics
(array): Song lyrics by section
-
-
attribution
(object): Lyrics source information-
source
(string): Provider name -
url
(string): Source URL
-
-
type
(string): Always "instantAnswers" -
configType
(string): Always "lyrics"