Beta founding offer: lock in 50% off any plan for life, before the beta ends. Claim founding pricing →
ResourcesIntegration GuidesA MusicBrainz API Alternative for Cross-Platform Track Metadata

A MusicBrainz API Alternative for Cross-Platform Track Metadata

MusicBrainz is excellent, and SonoVault builds on it. Here is when the one-request-per-second public API stops being enough, and what a hosted alternative with streaming-platform IDs, ISRC, and ISWC looks like.

First, the disclosure

SonoVault sources data from MusicBrainz. It is one of the six platforms in our catalog, it is credited on our data sources page, and a good part of what makes SonoVault work exists because the MetaBrainz community spent two decades building an open, carefully modelled music database. This article is not a takedown. It is an answer to a question we get from developers who already use MusicBrainz and love it: at what point do you need something different, and what does that something look like?

What MusicBrainz gets right

  • Open data. The core dataset is freely licensed, and full database dumps are published for anyone to download. No commercial API can honestly claim to beat that on openness.
  • Depth of modelling. Works, recordings, releases, release groups, artist credits, engineers, recording venues. If you need to know who played bass on a 1974 session, MusicBrainz is where that answer lives.
  • Community correction. Errors get found and fixed by people who care, with an edit history to prove it.
  • It is free. Both the data and the public API cost nothing.

The four walls you eventually hit

Every team we have talked to that went looking for a MusicBrainz API alternative hit one of the same four walls.

1. The rate limit. The public MusicBrainz API asks clients to hold to an average of one request per second. That is a fair ask for a donation-funded service, but it puts a hard ceiling on what you can build against it: enriching a 100,000-track catalog takes over a day of continuous polite polling, and a production feature that fans out user requests to MusicBrainz will throttle the moment it gets traffic.

2. Community-shaped coverage. Volunteer editors go where volunteer interest goes. Canonical rock and classical catalogs are covered superbly; fast-moving electronic releases, DJ-pool edits, and regional catalogs can lag or never arrive. A gap only gets filled when someone shows up to fill it.

3. No systematic streaming-platform IDs. MusicBrainz can hold URL relationships to streaming services, but they exist only where an editor added them. There is no first-class, reliably populated Spotify, Apple Music, Tidal, or Beatport ID on a recording. If your product needs “open this track on the user's platform” or cross-platform reconciliation, you end up joining against other sources anyway.

4. Scaling means hosting a mirror. The sanctioned way past the rate limit is running your own MusicBrainz instance with live data feed replication. That works, and plenty of companies do it, but now you are operating a Postgres cluster, a replication pipeline, and a search index for a database that is not your product.

The two read paths side by side

DimensionMusicBrainz public APISonoVault
Rate limit~1 request/second averagePlan-sized monthly quotas (1K free, up to 5M)
Streaming-platform IDsURL relationships where editors added themFirst-class links across six platforms
ISWC (composition) lookupWork data where linked by editorsMLC-backed ISWC endpoints, both directions
Scaling pathHost your own mirror + replicationHosted; upgrade the plan
CostFreeFree tier, then from €29/month
Contributing & editingYes, fully openNo, read-only API
Relationship depth (credits, works, places)UnmatchedSlim track shape only

Two of those rows favour MusicBrainz, and honestly so. If you need open data you can edit, or the deep relationship graph, stay put. The SonoVault case is the other five rows: a hosted catalog of 90M+ tracks merged from Spotify, Apple Music, Tidal, Beatport, Discogs, and MusicBrainz itself, keyed by ISRC, behind one x-api-key header and a documented REST surface.

Switch
1

Resolve the MBIDs you already store

You do not have to throw away your MusicBrainz IDs. GET /v1/tracks/links takes a musicbrainz_id and returns the same recording's identifiers everywhere else:

bashresolve-mbid
# One MBID in, every platform out. Same call works with ?isrc= or ?spotify_id=.
curl "https://api.sonovault.now/v1/tracks/links?musicbrainz_id=b3f6f5a0-3d1c-4be0-8e28-0a1f3e2c9d10" \
  -H "x-api-key: YOUR_API_KEY"
GET/v1/tracks/links?musicbrainz_id=…200 OK
{
  "track_id": 123,
  "title": "Harder Better Faster Stronger",
  "isrc": "GBDUW0000059",
  "links": [
    { "source": "spotify",     "external_id": "5W3cjX2J3tjhG8zb6u0qHn", "url": "https://open.spotify.com/track/…" },
    { "source": "applemusic",  "external_id": "697195787",  "url": "https://music.apple.com/song/…" },
    { "source": "tidal",       "external_id": "3789027",    "url": "https://tidal.com/browse/track/…" },
    { "source": "beatport",    "external_id": "12345679",   "url": "https://www.beatport.com/track/-/…" },
    { "source": "musicbrainz", "external_id": "b3f6f5a0-3d1c-4be0-8e28-0a1f3e2c9d10", "url": "https://musicbrainz.org/recording/…" }
  ]
}

Keep the MBID as your canonical key if you like; SonoVault becomes the join table. The same endpoint also resolves from an ISRC or any platform's ID, in any direction.

2

Search where you have no MBID

For the rows of your catalog that never matched a MusicBrainz recording, search by artist and title. The matcher strips DJ-pool tags, feat. credits, and casing noise before it looks anything up:

TypeScriptsearch.ts
// No MBID? Search by artist + title. Fuzzy matching handles the noise.
const res = await fetch(
  `${BASE}/v1/tracks/search?artist=Daft+Punk&title=Harder+Better+Faster+Stronger`,
  { headers: { "x-api-key": API_KEY } }
);
const { results } = await res.json();
GET/v1/tracks/search?artist=Daft+Punk&title=…200 OK
{
  "results": [
    {
      "id": 123,
      "title": "Harder Better Faster Stronger",
      "releases": [
        {
          "id": 1,
          "title": "Discovery",
          "artist": { "id": 1, "name": "Daft Punk" },
          "label": { "id": 10, "name": "Virgin Records" },
          "release_date": "2001-03-12"
        }
      ],
      "artists": [{ "id": 1, "name": "Daft Punk", "is_primary": true, "is_remixer": false }],
      "isrc": "GBDUW0000059",
      "duration": 224,
      "genre": ["House"],
      "subgenre": ["French House"]
    }
  ],
  "next_cursor": null
}

One call returns the ISRC, the genre, the label, and the canonical release date. There is also a free ISRC lookup tool if you want to try it in the browser first.

3

Cross from recording to composition

MusicBrainz models works beautifully where editors linked them. SonoVault's equivalent is a pair of MLC-backed ISWC endpoints: recording to composition, and composition to every recording of it.

bashiswc
# Recording → composition. MLC-backed; not part of the standard track payload.
curl "https://api.sonovault.now/v1/tracks/iswc?isrc=GBDUW0000059" \
  -H "x-api-key: YOUR_API_KEY"
GET/v1/tracks/iswc?isrc=GBDUW0000059200 OK
{
  "sonovault_id": 123,
  "isrc": "GBDUW0000059",
  "iswcs": [{ "iswc": "T0701427997", "title": "HARDER BETTER FASTER STRONGER" }]
}
💡The lowest-risk migration is a hybrid: keep MusicBrainz as your system of record for relationship data you already depend on, and move only the hot read path (lookups your product makes at request time) to SonoVault. Because /v1/tracks/links accepts musicbrainz_id, the two systems stay joinable for free.

When to stay on MusicBrainz

  • Your volume genuinely fits inside a request per second, and free matters more than latency.
  • You need the deep relationship graph: session credits, works, recording places, edit history.
  • You want to contribute corrections back to an open commons rather than consume a read-only API.
  • You are happy operating a mirror and the ops cost is worth the control.

If instead your wall is rate limits, streaming IDs, or coverage of fast-moving catalogs, that is the job SonoVault was built for. The same evaluation for other providers: a Discogs API alternative, a Gracenote API alternative, and for the Spotify Web API specifically, the full SonoVault vs Spotify API comparison.

MusicBrainz is a project of the MetaBrainz Foundation. SonoVault is not affiliated with, endorsed by, or sponsored by MetaBrainz. MusicBrainz is one of SonoVault's upstream data sources; see data sources & attribution. If anything on this page is inaccurate, email support@sonovault.now and we'll correct it.

Frequently asked questions

Is SonoVault a replacement for MusicBrainz?

No. MusicBrainz is one of SonoVault's upstream sources, and for open, community-editable data with deep relationship coverage it remains the best resource on the internet. SonoVault is the option for when you need a commercial read path on top: streaming-platform IDs, plan-sized rate limits instead of one request per second, and a hosted API you don't have to mirror yourself.

Can I keep MusicBrainz IDs as my canonical identifiers?

Yes. GET /v1/tracks/links accepts a musicbrainz_id parameter, so you can hold on to your MBIDs and use SonoVault to resolve each one to its ISRC and its IDs on Spotify, Apple Music, Tidal, Beatport, and Discogs. Switching the read path does not require re-keying your catalog.

Does SonoVault include MusicBrainz's relationship data?

No. The public track shape is deliberately slim: title, artists, releases with label and release date, ISRC, duration, genre, and subgenre. Deep credit graphs (session musicians, engineers, recording places) stay MusicBrainz territory. What SonoVault adds is what MusicBrainz doesn't systematically carry: first-class streaming-platform IDs and MLC-backed ISWC links.

What does SonoVault cost compared to a free MusicBrainz?

The free tier is 1,000 requests a month with search, ISRC lookup, and platform links. Paid plans are Starter at €29 for 50K requests, Growth at €99 for 500K, and Scale at €249 for 5M, with a flat 20% discount on annual billing. MusicBrainz's public API is free; what you pay SonoVault for is the merged six-platform catalog and not running mirror infrastructure yourself.

Ready to build?

Free API key. No credit card. 1,000 requests to get started.

Get Free API Key
More in Integration Guides
Integration GuidesAn ACRCloud Alternative When You Need Recognition Plus Metadata7 min readIntegration GuidesCursor Pagination Patterns: Walking Large Result Sets Safely5 min read