Ir al contenido
GET /v1/artist

Artist by MBID

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/musicbrainz-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/musicbrainz-api/v1/artist" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/musicbrainz-api/v1/artist", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/musicbrainz-api/v1/artist");
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/musicbrainz-api/v1/artist",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "artist": {
            "id": "a74b1b7f-71a5-4011-9441-d0b5e4122711",
            "area": "United Kingdom",
            "name": "Radiohead",
            "tags": [
                "alternative",
                "alternative rock",
                "alternative rock music",
                "ambient pop",
                "art pop",
                "art rock",
                "british",
                "britpop",
                "britrock",
                "chamber pop",
                "crossover prog",
                "electronic",
                "electronic rock",
                "electronica",
                "english",
                "experimental",
                "experimental rock",
                "idm",
                "indie rock",
                "indietronica",
                "oxford",
                "post-britpop",
                "post-grunge",
                "progressive rock music",
                "rock",
                "uk",
                "vyrzukhisuc-artiest"
            ],
            "type": "Group",
            "isnis": [
                "0000000115475162"
            ],
            "gender": null,
            "country": "GB",
            "life_span": {
                "end": null,
                "begin": "1991",
                "ended": false
            },
            "relations": [
                {
                    "url": "https://www.allmusic.com/artist/mn0000326249",
                    "type": "allmusic"
                },
                {
                    "url": "https://radiohead.bandcamp.com/",
                    "type": "bandcamp"
                },
                {
                    "url": "https://www.bandsintown.com/a/25874",
                    "type": "bandsintown"
                },
                {
                    "url": "https://www.bbc.co.uk/music/artists/a74b1b7f-71a5-4011-9441-d0b5e4122711",
                    "type": "BBC Music page"
                },
                {
                    "url": "https://radiohead.tumblr.com/",
                    "type": "blog"
                },
                {
                    "url": "http://www.btinternet.com/~r.j.arthur/rh/rhdisc.htm",
                    "type": "discography page"
                },
                {
                    "url": "https://www.discogs.com/artist/3840",
                    "type": "discogs"
                },
                {
                    "url": "https://citizeninsane.eu/",
                    "type": "fanpage"
                },
                {
                    "url": "https://open.spotify.com/artist/4Z8W4fKeB5YxbusRsdQVPb",
                    "type": "free streaming"
                },
                {
                    "url": "https://www.deezer.com/artist/323887691",
                    "type": "free streaming"
                },
                {
                    "url": "https://www.deezer.com/artist/399",
                    "type": "free streaming"
        
…