BYTETOOLS

Lyrics.ovh API

Free song lyrics API with no key. Fetch full lyrics by artist and title with a single GET request. CORS enabled. Tested curl example and live response.

No API key requiredCORS enabledHTTPSFree tier

Endpoint tested and returned HTTP 200 on 2026-08-19

What is the Lyrics.ovh API?

Lyrics.ovh is a free API that returns the full lyrics of a song given an artist and title. It requires no API key and responds to a simple GET request with the lyrics as plain text in a JSON field.

Lyrics.ovh is about as simple as an API gets: put the artist and title in the URL path and get the lyrics back in a single `lyrics` field. There is no search step, no key and no pagination.

That simplicity comes with matching constraints. Matching is strict, so misspellings and 'feat.' credits will miss, and coverage is patchier than commercial lyrics providers. It is also worth being aware that song lyrics are copyrighted works — this is fine for personal projects, but commercial use generally requires a licensed provider such as Musixmatch.

Quick facts

Base URL
https://api.lyrics.ovh/v1
Authentication
No key required.
Rate limit
No published limit; the service is community-run and can be slow.
Pricing
Free. Note that lyrics are copyrighted content — check licensing before commercial use.
CORS
Enabled — callable directly from browser JavaScript
Official docs
Read the docs

How to use the Lyrics.ovh API

Every request below was executed against the live API on 2026-08-19, and the response shown is the real body it returned — not an illustration.

1. Fetch the lyrics of a song

GET https://api.lyrics.ovh/v1/coldplay/yellow

curl
curl 'https://api.lyrics.ovh/v1/coldplay/yellow'
JavaScript (fetch)
const res = await fetch("https://api.lyrics.ovh/v1/coldplay/yellow");
if (!res.ok) throw new Error(`Request failed: ${res.status}`);
const data = await res.json();
console.log(data);
Python (requests)
import requests

res = requests.get("https://api.lyrics.ovh/v1/coldplay/yellow", timeout=20)
res.raise_for_status()
print(res.json())
Response — HTTP 200
{
  "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"
}

Parameters

ParameterTypeRequiredDescription
<artist>pathRequiredArtist name, URL-encoded. coldplay
<title>pathRequiredSong title, URL-encoded. yellow

Response fields

lyricsstring
Full song lyrics as a single string with newline characters preserved.
errorstring
Present instead of `lyrics` when no match was found.

What you can build with the Lyrics.ovh API

  • Display lyrics alongside a now-playing track in a personal music app
  • Build a lyrics search feature for a hobby project
  • Analyse song text for a linguistics or data project
  • Create karaoke-style displays for personal use

Common errors and how to fix them

404 with an error field

No lyrics found for that artist and title combination.

Fix: Matching is strict — drop 'feat.' credits, remaster suffixes and punctuation, and check spelling.

Slow or timed-out response

The service is community-run with limited capacity.

Fix: Set a generous timeout and cache results you have already fetched.

Lyrics.ovh API — frequently asked questions

Is there a free lyrics API?

Yes, Lyrics.ovh returns full song lyrics by artist and title with no API key. Coverage is smaller than commercial providers and matching is strict.

Why can't it find a song I know exists?

Matching is exact rather than fuzzy. Remove featured-artist credits, remaster or live suffixes and punctuation, and verify the spelling of both artist and title.

Can I use song lyrics commercially?

Generally not without a licence. Lyrics are copyrighted works, and commercial products normally use a licensed provider such as Musixmatch. This API is best suited to personal projects.

Does it preserve line breaks?

Yes, the lyrics come back as one string with newline characters, so render it in a pre-formatted element or convert newlines to line breaks.

Tools that pair with this API

Lyrics.ovh is an independent third-party service and is not affiliated with ByteTools or ByteVancer. Details on this page were verified on 2026-08-19; always check the official documentation before relying on this API in production, as terms and limits can change.