Lyrical

The Lyrical is a lyrics finder API allows users to fetch song lyrics based on the provided artist and song title.

Base URL

"https://openapi-idk8.onrender.com"

Endpoints

  • GET /lyrical/find: Retrieve the lyrics of a song based on the provided artist and song title.

GET /lyrical/find

Retrieves the lyrics of a song based on the provided artist and song title.

Query Parameters

  • artist (string): The name of the artist. This parameter is required.
  • song (string): The title of the song. This parameter is required.

Sample Request

GET "https://openapi-idk8.onrender.com/lyrical/find?artist=Coldplay&song=Yellow"

Sample Response

{
  "api_name": "Lyrical",
  "author": "OpenAPI",
  "description": "The Lyrical is a lyrics finder API allows users to fetch song lyrics based on the provided artist and song title.",
  "artist": "Coldplay",
  "song": "Yellow",
  "lyrics": "Paroles de la chanson Yellow par Coldplay\r\n[Chris Martin]\nLook at the stars\nLook how they shine for you\nAnd everything you do\nYeah, they were all yellow\nI came along\nI wrote a song for you\nAnd all the things you do\nAnd it was called \"Yellow\"\nSo then I took my turn\nOh, what a thing to have done\nAnd it was all yellow\n\n[Chris, Jonny & Will]\n(Aah) Your skin, oh yeah, your skin and bones\n(Ooh) Turn into something beautiful\n\n(Aah) You know, you know I love you so\nYou know I love you so\n\n[Chris Martin]\nI swam across\nI jumped across for you\nOh, what a thing to do\n'Cause you were all yellow\nI drew a line\nI drew a line for you\nOh, what a thing to do\nAnd it was all yellow\n\n[Chris, Jonny & Will]\n(Aah) Your skin, oh yeah, your skin and bones\n(Ooh) Turn into something beautiful\n(Aah) And you know\nFor you, I'd bleed myself dry\n\nFor you, I'd bleed myself dry\n\n[ Chris Martin]\nIt's true, look how they shine for you\nLook how they shine for you\nLook how they shine for\nLook how they shine for you\nLook how they shine for you\nLook how they shine\n\n[ Chris Martin]\nLook at the stars\nLook how they shine for you\nAnd all the things that you do"
}

Error Handling

If there is an error or the artist or song parameters are missing, the API responds with an appropriate error message and status code.

Additional Information

The API uses an external service to fetch lyrics. Ensure the artist and song title are correctly spelled to avoid errors.