/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/listenbrainz-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/listenbrainz-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/listenbrainz-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/listenbrainz-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"ranges": [
"week",
"month",
"quarter",
"year",
"all_time"
],
"source": "ListenBrainz public API (live)",
"service": "listenbrainz-api",
"entities": [
"artists",
"recordings",
"releases"
],
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/user": "A user's recent listens (username=, e.g. rob, count).",
"GET /v1/charts": "Sitewide listening charts (entity=artists|recordings|releases, range=week|month|quarter|year|all_time, count).",
"GET /v1/now-playing": "What a user is playing now (username=)."
},
"description": "Live data from ListenBrainz, the open MetaBrainz music-scrobbling network: sitewide listening charts (most-listened artists, recordings or releases by week/month/year/all-time with listen counts), a user's recent listens, and what a user is playing now. Live, no key. Distinct from music-metadata and lyrics APIs.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:03:27.829Z",
"request_id": "0d5cc58f-a409-4434-8553-e6c8bef09a89"
},
"status": "ok",
"message": "Meta",
"success": true
}