I'm trying to retrieve track information from the MusicBrainz API, using only the artist and title as search queries:
http://musicbrainz.org/ws/2/recording/?query=artist:Coldplay+AND+recording:The+Scientist
This will return every version of the song that the artist released, including compilations, 'best of' albums and live recordings. I want to find the 'original' version, which should be the first one that was released.
Without retrieving every single result (which may not be possible in a single request) the obvious way to do this would be to have the response sorted by ascending release date, so that the first result is always the one I'm after.
The API documentation doesn't seem to mention sorting results, so is this possible?