Getting artists in release json

I’m trying to obtain a list of track titles and album names. If I do this:

https://musicbrainz.org/ws/2/release/{release-id}?inc=recordings&fmt=json

then the returned list will only contain track titles, but not the individual artists. A single album can have many different artists (e.g for compilations), but I can’t seem to find a way of retrieving that data at once. Is the only way to do this by querying the individual song ids?

According to the doc, you can add artist-credits in the inc parameter:

https://musicbrainz.org/ws/2/release/938ab57a-6020-4a20-bf12-0d337eb78629?inc=recordings+artist-credits&fmt=json

3 Likes

oh, I was looking at the wrong list of inc parameters. Sorry for that, thanks.

1 Like