/v1/meta
Service metadata and endpoint catalog
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}