Aller au contenu
GET /v1/meta

Service metadata and endpoint catalog

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/discogs-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/discogs-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/discogs-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/discogs-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/discogs-api/v1/meta",
    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": {
        "source": "Discogs API (api.discogs.com, live)",
        "service": "discogs-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/label": "A record label's profile, parent and sublabels (id=1).",
            "GET /v1/artist": "An artist's profile, aliases and members (id=72872).",
            "GET /v1/master": "A master release grouping all editions (id=8295).",
            "GET /v1/search": "Search the Discogs database (q=nirvana, type=release|artist|label|master).",
            "GET /v1/release": "A release with community have/want/rating (id=249504)."
        },
        "description": "Live data from Discogs, the largest community-built database and marketplace of music releases, via its public API. The search endpoint searches the whole database by text and type (release, artist, label, master); the release endpoint returns a release's artists, year, country, genres, styles, labels and formats plus the collector-community signal (how many have it, want it, its average rating and copies for sale); the artist endpoint returns an artist's profile, aliases, members and links; the master endpoint returns the canonical master release grouping all editions; the label endpoint returns a record label's profile, parent and sublabels. Live, no key, nothing stored. Distinct from the MusicBrainz, Spotify, Deezer, Genius and Last.fm-style music APIs — this is Discogs' own community-built release database with have/want and marketplace data.",
        "upstream_status": "ok",
        "sample_release_have": 4047
    },
    "meta": {
        "timestamp": "2026-06-10T14:01:46.231Z",
        "request_id": "ad9ad22b-e8eb-42b6-9327-0934d03b75bb"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}