Overview
Vagalume provides programmatic access to crowdsourced lyrics and music knowledge via REST API. This Music API enables developers to integrate crowdsourced lyrics and music knowledge into applications, dashboards, and automated workflows. Check the official documentation for endpoint details, authentication requirements, and rate limits.
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/..."
} Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://api.vagalume.com.br/docs/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
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.
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →AI Mastering
⭐ Beginner's PickAI Mastering is an API that automatically applies professional audio mastering to your music files using AI algorithms.
Freesound
⭐ Beginner's PickFreesound is a collaborative database of Creative Commons licensed audio samples and field recordings.
KSoft.Si Lyrics
⭐ Beginner's PickKSoft.Si Lyrics API provides instant lyrics lookup for songs by title and artist name.
LastFm
⭐ Beginner's PickLast.fm is a music discovery and social listening platform with over 15 years of scrobbling data.
Musixmatch
Musixmatch provides access to one of the largest lyrics databases in the world, covering millions of songs.