SonoVault is pre-launch — interested? Join the waitlist →

Overview

The SonoVault API gives you access to music metadata for 80 million tracks and counting. Look up ISRC codes, artist credits, label, genre tags, release dates, and cross-platform IDs — all from a single REST endpoint.

Use it to power music discovery apps, catalog management, sync and royalty tools, or any workflow that needs accurate track-level data.

All responses are JSON. Every request requires an API key in the x-api-key header. There are no SDKs to install — any HTTP client works.

What you can do

  • Search tracks by artist and title — returns ISRC, duration, genre, and artist credits.
  • Look up by ISRC — get full metadata for a specific recording.
  • Resolve cross-platform IDs — given a Spotify, Beatport, Apple Music, Tidal, Discogs, or MusicBrainz ID, get matching IDs on all other platforms.
  • Search artists and releases — find artists by name or browse their discography.
  • New releases — paginated feed of the latest releases, sorted by artist popularity.

Try it without signing up

Every endpoint on this page has a Try it out button that opens the API explorer. It uses a public demo key so you can make real requests and see live responses — no account required. Click Try it out on any endpoint to get started.


Quickstart

Get from zero to your first API response in under 5 minutes. Create a free account to get an API key — no credit card required.

1. Get your API key

After signing up, your API key is available immediately on your dashboard. All requests must include your key in the x-api-key header.

2. Make your first request

Search for a track by artist and title. The response includes ISRC, duration, genre, and full artist credits.

curl
curl https://api.sonovault.now/v1/tracks/search \
-H "x-api-key: YOUR_API_KEY" \
-G -d "artist=Daft Punk" \
-d "title=One More Time"

3. Explore the API

Now that you have your first result, try looking up the ISRC with the ISRC lookup endpoint or resolve cross-platform links with Platform links.


Authentication

All API requests require a valid API key passed in the x-api-key header.

http
x-api-key: svk_live_xxxxxxxxxxxxxxxxxx

Test keys prefixed svk_test_ return mocked data. Live keys prefixed svk_live_ hit the real database.

Never expose your API key in client-side code or commit it to version control. Use environment variables.

Base URL

All API requests use the following base URL:

http
https://api.sonovault.now

All endpoints return JSON with Content-Type: application/json. Request parameters are passed as query strings for GET requests.


Rate limits

Rate limits are enforced per API key on a rolling 60-second window. If you exceed your limit, requests return 429 Too Many Requests.

TierRequests/monthBurst (per 60s)
Free1,00020
Starter50,00060
Growth500,000300
Scale5,000,0001,000

Every response includes rate limit headers so you can track your usage and avoid hitting limits:

HeaderDescription
RateLimit-LimitYour burst limit (max requests per 60-second window).
RateLimit-RemainingRequests remaining in the current window.
RateLimit-ResetSeconds until the current window resets and RateLimit-Remaining refills.

When you receive a 429 response, wait the number of seconds in RateLimit-Reset before retrying. For batch workloads, check RateLimit-Remaining and throttle proactively rather than waiting for a rejection.


Errors

All errors return a JSON object with an error string:

json
{
"error": "Not found"
}
StatusDescription
400Missing or invalid parameters.
401Missing or invalid API key.
403Endpoint requires a paid plan. Upgrade to access browse.
410Endpoint disabled. The endpoint will return in another form later.
404No matching track or resource.
429Rate limit exceeded. Check RateLimit-Reset header for retry timing.
500Unexpected server error.


ISRC lookup

Exact lookup by ISRC code. Returns full track detail including genre and subgenre.

GET/v1/tracks/isrc

Parameters

ParameterTypeRequiredDescription
isrcstringrequiredISRC code (e.g. GBDUW0000053).
Example response

Track by ID

Get a single track by its internal SonoVault track ID. Returns the same track payload as ISRC lookup — title, artists, release, ISRC, duration, genre, and subgenre.

GET/v1/tracks/:id

Path parameters

ParameterTypeRequiredDescription
idintegerrequiredInternal SonoVault track ID.
Example response



Artist by ID

Get artist by ID. Returns the public artist object (country, formation_year + optional formation_date, social_links, wikidata_id) plus a release_count summary. For the actual release list, use /v1/artists/:id/releases — the embedded array was removed because it became huge for prolific artists.

GET/v1/artists/:id

Path parameters

ParameterTypeRequiredDescription
idintegerrequiredArtist ID.
Example response

Releases by artist

Paginated feed of releases by a specific artist, ordered by release date (newest first). Use this instead of the embedded releases array on /v1/artists/:id when you need pagination.

GET/v1/artists/:id/releases

Path parameters

ParameterTypeRequiredDescription
idintegerrequiredArtist ID.

Query parameters

ParameterTypeRequiredDescription
limitintegeroptionalMax results, 1–100. Default 20.
cursorstringoptionalCursor from previous response for pagination.
Example response


Label by ID

Get label by ID. Returns the public label object plus release_count and artist_count summaries. For the actual lists, use /v1/labels/:id/releases and /v1/labels/:id/artists — embedded arrays were removed because they became huge for prolific labels.

GET/v1/labels/:id

Path parameters

ParameterTypeRequiredDescription
idintegerrequiredLabel ID.
Example response

Releases by label

Paginated feed of releases on a specific label, ordered by release date (newest first). Each result carries the primary artist, label name, catalog number, and track count.

GET/v1/labels/:id/releases

Path parameters

ParameterTypeRequiredDescription
idintegerrequiredLabel ID.

Query parameters

ParameterTypeRequiredDescription
limitintegeroptionalMax results, 1–100. Default 20.
cursorstringoptionalCursor from previous response for pagination.
Example response

Artists by label

Paginated list of artists with releases on a specific label, ordered by number of releases on that label (descending). Each artist carries the public profile fields and a release_count scoped to this label.

GET/v1/labels/:id/artists

Path parameters

ParameterTypeRequiredDescription
idintegerrequiredLabel ID.

Query parameters

ParameterTypeRequiredDescription
limitintegeroptionalMax results, 1–100. Default 20.
cursorstringoptionalCursor from previous response for pagination.
Example response


Release by ID

Get release by ID with all tracks, including ISRC, genre, subgenre, and artist credits.

GET/v1/releases/:id

Path parameters

ParameterTypeRequiredDescription
idintegerrequiredRelease ID.
Example response

New releases

Paginated feed of releases ordered by release date (newest first).

GETPaid/v1/releases/new

Parameters

ParameterTypeRequiredDescription
limitintegeroptional1–100. Default 20.
cursorstringoptionalCursor from previous response for pagination.

Pagination

When more results are available, the response includes a nextCursor string. Pass it as the cursor parameter to fetch the next page:

curl
curl https://api.sonovault.now/v1/releases/new \
-H "x-api-key: YOUR_API_KEY" \
-G -d "limit=20" \
-d "cursor=2026-03-22:789"

When nextCursor is null, you have reached the last page.

Example response

Browse tracks

Discover tracks by filtering on label, artist, genre, and year. Returns 20 random tracks sampled from matching results.

GETPaid/v1/tracks/browse

Parameters

ParameterTypeRequiredDescription
labelIdintegeroptionalFilter by label ID.
artistIdintegeroptionalFilter by artist ID.
genrestringoptionalExact genre name (case-insensitive). House matches House but not Tech House.
yearintegeroptionalRelease year (e.g. 2025).
Example response

FAQ

Sign up for a free account at sonovault.now — no credit card required. Your API key is available immediately on your dashboard. Include it in the x-api-key header with every request.
All endpoints return JSON with Content-Type: application/json. Request parameters are passed as query strings for GET requests. There are no SDKs to install — any HTTP client works.
Yes. The free tier gives you 1,000 requests per month with a 20 requests/minute burst limit. It includes track search, ISRC lookup, and platform links. Track browse and new releases require a paid plan.
You receive a 429 Too Many Requests response. Check the RateLimit-Reset header for the number of seconds until your window resets. For batch workloads, monitor RateLimit-Remaining and throttle proactively.
The platform links endpoint resolves track IDs across Spotify, Apple Music, Beatport, Tidal, Discogs, and MusicBrainz. Given any one platform ID or an ISRC code, it returns matching IDs on all other platforms.
API explorer

Click Try it out on any endpoint to load it here.