Naar de inhoud
GET /v1/search/artists

Search artists

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/musicbrainz-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 29,
        "query": "radiohead",
        "artists": [
            {
                "id": "a74b1b7f-71a5-4011-9441-d0b5e4122711",
                "area": "United Kingdom",
                "name": "Radiohead",
                "tags": [
                    "rock",
                    "electronic",
                    "post-rock",
                    "alternative rock",
                    "experimental",
                    "british",
                    "grunge",
                    "idm",
                    "uk",
                    "britannique",
                    "indie rock",
                    "electronica",
                    "alternative",
                    "britpop",
                    "art rock",
                    "post-grunge",
                    "experimental rock",
                    "english",
                    "chamber pop",
                    "parlophone",
                    "england",
                    "indietronica",
                    "melancholic",
                    "oxford",
                    "crossover prog",
                    "bootleg",
                    "rock and indie",
                    "britrock",
                    "electronic rock",
                    "ambient pop",
                    "c’était mieux avant",
                    "art pop",
                    "nude",
                    "trap edm",
                    "sacred cows",
                    "alternative rock music",
                    "lolicore",
                    "post-britpop",
                    "progressive rock music",
                    "1992-1998",
                    "new grave",
                    "vyrzukhisuc-artiest"
                ],
                "type": "Group",
                "isnis": [
                    "0000000115475162"
                ],
                "score": 100,
                "country": "GB",
                "life_span": {
                    "begin": "1991",
                    "ended": null
                },
                "relations": [],
                "sort_name": "Radiohead",
                "begin_area": "Abingdon-on-Thames"
            },
            {
                "id": "c74f4726-2671-4011-81b6-f70da905c05a",
                "area": "Abingdon-on-Thames",
                "name": "On a Friday",
                "tags": [
                    "indie pop",
                    "uk",
                    "oxford",
                    "united kingdom",
                    "successor"
                ],
                "type": "Group",
                "score": 64,
                "life_span": {
                    "end": "1991",
                    "begin": "1985",
                    "ended": true
                },
                "relations": [],
                "sort_name": "On a Friday",
                "begin_area": "Abingdon-on-Thames",
                "disambiguation": "pre‐Radiohead group, until 1991"
            },
            {
               
…