← Entertainment

Song Lyrics

GET /lyrics/:artist/:title

Retrieve the full lyrics for any song by providing the artist name and song title in the URL path. Returns the complete song text. Data from the lyrics.ovh API covering a vast catalog of songs across all genres and decades. Useful for karaoke apps, music education platforms, lyric analysis tools, songwriting reference, and music trivia features.

Parameters

artist required

Artist or band name

title required

Song title

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/lyrics/coldplay/yellow
Coldplay - Yellow
curl https://nordapi.ee/api/v1/lyrics/coldplay/yellow
Queen - Bohemian Rhapsody
curl https://nordapi.ee/api/v1/lyrics/queen/bohemian+rhapsody
Beatles - Yesterday
curl https://nordapi.ee/api/v1/lyrics/beatles/yesterday

Live Response

{
  "data": {
    "artist": "coldplay",
    "line_count": 43,
    "lyrics": "[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",
    "title": "yellow"
  },
  "success": true
}