Find by discogs id

Is there any way that i get information about the release by discogs id in API call ? Since the most releases have linked to discogs page i think there way to do that for example

Just do a regular lookup for an URL entity using the resource URL parameter, as per https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2#Non-MBID_Lookups - e.g., https://musicbrainz.org/ws/2/url?resource=https://www.discogs.com/release/1309587

Note that you will need to use include parameters as well if you want to go directly from URL to MB entity, e.g., to see artists linked to a given url, you need to use the artist-rels include flag.

You can see an example of this in my spotify2musicbrainz.py script:

5 Likes