# MusicBrainz Release Group Search via Suverse Proxy

> MusicBrainz Release Group Search via Suverse Proxy is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Searches the MusicBrainz open music database for release groups (albums, singles, EPs) by title, returning canonical entries with MBID, type, and artist credits.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-musicbrainz-releasegroup-find
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/musicbrainz-release-group-search-via-suverse-proxy-a373bef6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RAurzc2Km_ImWuGxaxeXx

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability musicbrainz-release-group-search-via-suverse-proxy-a373bef6 -d '<json body>'
```

Example prompt: Can you search MusicBrainz for release groups matching 'Rumours' and tell me the MBID, primary type, and artist credit for the top results?

## When to prefer this

Choose this endpoint when you need to resolve a music album, single, or EP title to its canonical MusicBrainz entry (MBID and metadata) without requiring an API key. Ideal for enriching music catalogs, verifying release identity, or linking internal records to the open MusicBrainz database. Prefer it over direct MusicBrainz API calls when you want a proxied, keyless, agent-friendly interface.

## Known failure modes

- No matches found for the provided title — returns empty result set
- MusicBrainz upstream rate limiting or downtime causes request failure
- Ambiguous titles may return many loosely matched results requiring further filtering
- Proxy service unavailable returns HTTP error
- Input body missing required fields returns validation error

## How this service works

Search MusicBrainz for release groups (albums, singles, EPs) by title. Returns matches with title, primary-type, artist credit and MBID. Keyless (sends a User-Agent). Useful for finding canonical album entries in the open music database.

## Output

Returns a list of matching release group entries from MusicBrainz, each including the release group title, primary type (Album, Single, EP, etc.), artist credit name(s), and the MusicBrainz ID (MBID) for canonical referencing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/musicbrainz-release-group-search-via-suverse-proxy-a373bef6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
