Skip to content

Universal Lyrics Engine

Heavstal Lyrics is a high-availability lyrics fetcher. It aggregates data from open-source libraries (LRCLIB) and metadata providers (Genius) to ensure you get results without IP blocks.

POST /lyrics

FieldTypeRequiredDescription
querystringYesThe song title and artist (e.g. “Mockingbird Eminem”).
const res = await fetch('https://heavstal.com.ng/api/v1/lyrics', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({
query: 'Billie Eilish Bad Guy'
})
});
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"title": "bad guy",
"artist": "Billie Eilish",
"image": "https://i.scdn.co/image/...",
"url": "https://lrclib.net/api/get/...",
"lyrics": "White shirt now red, my bloody nose..."
}
}