This new build contains the first work on a track endpoint. As a new API is being added, a new API version is introduced: 20150623.
The track API currently only supports fingerprint based queries. Send your GET/POST to:
With the parameters:
track.1.duration=[duration]
track.1.fingerprint=[duration]
The response will be of the form:
[
{
"title": "Sunnyside",
"artists": [
"Mike Stern"
],
"releases": [
{
"title": "Between The Lines",
"artist": "Mike Stern",
"year": "1996",
"media": [
],
"images": [
{
"width": "498",
"height": "500"
}
],
"uris": [
],
"score": 1
}
]
}
]
Next on the schedule: name based track lookups and recording IDs for matched tracks.
Let me know what you think!
Dan