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.
Endpoint
Section titled “Endpoint”POST /lyrics
Request Parameters
Section titled “Request Parameters”| Field | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | The song title and artist (e.g. “Mockingbird Eminem”). |
Example Usage
Section titled “Example Usage”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'})});Successful Response
Section titled “Successful Response”{"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..."}}