GET /lyrics/:artist/:title
通过在 URL 路径中提供艺术家姓名和歌曲标题检索任何歌曲的完整歌词。返回完整的歌曲文本。数据来自 lyrics.ovh API,涵盖所有类型和年代的大量歌曲目录。适用于卡拉 OK 应用、音乐教育平台、歌词分析工具、歌曲创作参考和音乐问答功能。
artist
必填
Artist or band name
title
必填
Song title
| 名称 | 必填 | 默认值 | 描述 |
|---|---|---|---|
artist |
是 | - | Artist or band name |
title |
是 | - | Song title |
curl https://nordapi.ee/api/v1/lyrics/coldplay/yellow
curl https://nordapi.ee/api/v1/lyrics/coldplay/yellow
curl https://nordapi.ee/api/v1/lyrics/queen/bohemian+rhapsody
curl https://nordapi.ee/api/v1/lyrics/beatles/yesterday
{
"data": {
"artist": "coldplay",
"line_count": 41,
"lyrics": "Look 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\nyour skin\noh yeah your skin and bones\nturn into something beautiful\nand you know\nyou know I love you so\nyou know I love you so\n\nI swam across\nI jumped across for you\noh what a thing to do\n'cos 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\nand your skin\noh yeah your skin and bones\nturn into something beautiful\nand you know\nfor you I bleed myself dry\nfor you I bleed myself dry\n\nit's true\nlook 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\nlook at the stars\nlook how they shine for you\nand all the things that you do",
"title": "yellow"
},
"success": true
}