Lyrics.ovh API
Overview
Lyrics.ovh is a simple, no-authentication API that returns song lyrics given an artist name and song title. There are no API keys, rate limit documentation, or accounts needed—just make a GET request and get lyrics back. It is an ideal starting point for beginners who want to add lyrics to a music app.
Beginner Tip
URL-encode the artist and title (replace spaces with %20 or use encodeURIComponent in JavaScript) to avoid errors with special characters. Always check for a "No lyrics found" error in the response before displaying lyrics to users.
Available Data
Example Response
{
"name": "Bohemian Rhapsody",
"artist": "Queen",
"album": "A Night at the Opera",
"duration_ms": 354000,
"popularity": 92,
"preview_url": "https://p.scdn.co/mp3-preview/..."
} Field Reference
lyrics Full lyrics text of the song, with newline characters separating lines and verses. error Error message returned when no lyrics are found for the given artist and title (only present on failure). Implementation Example
const url = "https://lyricsovh.docs.apiary.io/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Bandsintown
Bandsintown provides programmatic access to music events via REST API.
Gaana
Gaana is an unofficial API wrapper for the popular Indian music streaming platform Gaana.
Genrenator
⭐ Beginner's PickGenrenator is a fun, no-auth API that generates random music genre names on demand.
iTunes Search
iTunes Search provides programmatic access to software products via REST API.
JioSaavn
JioSaavn is an unofficial API wrapper for the popular Indian music streaming service JioSaavn.