Aller au contenu
GET /v1/user-stats

A user's top artists, recordings or releases

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/listenbrainz-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "count": 25,
        "range": "all_time",
        "stats": [
            {
                "mbid": "c24b47a1-2f52-44f3-a3c6-374dca844731",
                "name": "Wax Tailor",
                "rank": 1,
                "title": null,
                "artist": "Wax Tailor",
                "listen_count": 4298
            },
            {
                "mbid": "1c70a3fc-fa3c-4be1-8b55-c3192db8a884",
                "name": "Röyksopp",
                "rank": 2,
                "title": null,
                "artist": "Röyksopp",
                "listen_count": 4249
            },
            {
                "mbid": "a8b39181-6939-451e-9641-2db231b73706",
                "name": "Abakus",
                "rank": 3,
                "title": null,
                "artist": "Abakus",
                "listen_count": 3809
            },
            {
                "mbid": "9a709693-b4f8-4da9-8cc1-038c911a61be",
                "name": "Bonobo",
                "rank": 4,
                "title": null,
                "artist": "Bonobo",
                "listen_count": 3536
            },
            {
                "mbid": "3a07764c-7cc5-42e9-8205-3de7532f4771",
                "name": "Pretty Lights",
                "rank": 5,
                "title": null,
                "artist": "Pretty Lights",
                "listen_count": 3183
            },
            {
                "mbid": "8229a8f1-b315-4fae-af57-b3eb71efdaf4",
                "name": "Carbon Based Lifeforms",
                "rank": 6,
                "title": null,
                "artist": "Carbon Based Lifeforms",
                "listen_count": 2955
            },
            {
                "mbid": "83d91898-7763-47d7-b03b-b92132375c47",
                "name": "Pink Floyd",
                "rank": 7,
                "title": null,
                "artist": "Pink Floyd",
                "listen_count": 2732
            },
            {
                "mbid": "69158f97-4c07-4c4e-baf8-4e4ab1ed666e",
                "name": "Boards of Canada",
                "rank": 8,
                "title": null,
                "artist": "Boards of Canada",
                "listen_count": 2643
            },
            {
                "mbid": "067102ea-9519-4622-9077-57ca4164cfbb",
                "name": "Morcheeba",
                "rank": 9,
                "title": null,
                "artist": "Morcheeba",
                "listen_count": 2593
            },
            {
                "mbid": "f1106b17-dcbb-45f6-b938-199ccfab50cc",
                "name": "New Order",
                "rank": 10,
                "title": null,
                "artist": "New Order",
                "listen_count": 2563
            },
            {
                "mbid": "aa1d4315-5246-42b2-b62b-f997d046d8b2",
                "name": "Emancipator",
                "rank": 11,
                "title": null,
                "artist": "Emancipator",
                "li
…