Overview
Jamendo is a music platform hosting over 600,000 Creative Commons licensed tracks from independent artists worldwide. The API lets you search tracks, albums, and artists, and even license music for commercial use. OAuth is required for write actions but a client ID is enough for reading catalog data.
Beginner Tip
Register for a free API key at developer.jamendo.com and use client_id as a query parameter—no OAuth needed for browsing the catalog. Always include format=json in your request to ensure JSON output.
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
headers.status "success" or "failed" indicating whether the request was processed correctly. results Array of track or album objects matching the query. results[].id Unique track identifier on the Jamendo platform. results[].name Track title as provided by the artist. results[].audio Direct URL to stream or download the full audio file. results[].license_ccurl URL of the Creative Commons license governing how the track can be used. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://developer.jamendo.com/v3.0/docs";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer 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.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →7digital
7digital is a music platform API that lets you search a large catalog of licensed tracks, albums, and artists and retrieve streaming previews or purchase links.
Audiomack
Audiomack is a music streaming platform API that lets you access tracks, albums, playlists, and artist profiles from its catalog.
Bandcamp
Bandcamp is an independent music marketplace API that lets you access artist and fan data, sales information, and music catalog details for authorized accounts.
Deezer
⭐ Beginner's PickDeezer is a global music streaming API that gives you access to a catalog of over 90 million tracks, playlists, albums, and artist information.
Discogs
⭐ Beginner's PickDiscogs is the world's largest music database and marketplace API, covering vinyl records, CDs, and tapes with detailed release data, artist biographies, and pricing.