Is anyone else seeing the Apple Music API acting sporadically?
The API call we are using is
https://api.music.apple.com/v1/catalog/{0}/search?offset={1}&term={2}&limit=20&types=songs
If we do
https://api.music.apple.com/v1/catalog/US/search?offset=0&term=maroon+5&limit=20&types=songs
and
https://api.music.apple.com/v1/catalog/US/search?offset=20&term=maroon+5&limit=20&types=songs
the returned results from the api call that has an offset of 20 are the same results as the returned api call that had an offset of 0.
We've also seen it where instead of searching maroon+5 we search lady+gaga and that doesn't work either however it is currently working whereas we've searched lionel+richie and that did work but currently is not working thus producing the same behavior as maroon+5.
After changing the limit to 10 to test out that behavior, instead of returning songs 11-20 on the second api call with an offset of 10, (https://api.music.apple.com/v1/catalog/US/search?offset=10&term=maroon+5&limit=10&types=songs) songs 1-10 were returned again where as doing
https://api.music.apple.com/v1/catalog/US/search?offset=0&term=maroon+5&limit=20&types=songs returned songs 1-20
The API call we are using is
https://api.music.apple.com/v1/catalog/{0}/search?offset={1}&term={2}&limit=20&types=songs
If we do
https://api.music.apple.com/v1/catalog/US/search?offset=0&term=maroon+5&limit=20&types=songs
and
https://api.music.apple.com/v1/catalog/US/search?offset=20&term=maroon+5&limit=20&types=songs
the returned results from the api call that has an offset of 20 are the same results as the returned api call that had an offset of 0.
We've also seen it where instead of searching maroon+5 we search lady+gaga and that doesn't work either however it is currently working whereas we've searched lionel+richie and that did work but currently is not working thus producing the same behavior as maroon+5.
After changing the limit to 10 to test out that behavior, instead of returning songs 11-20 on the second api call with an offset of 10, (https://api.music.apple.com/v1/catalog/US/search?offset=10&term=maroon+5&limit=10&types=songs) songs 1-10 were returned again where as doing
https://api.music.apple.com/v1/catalog/US/search?offset=0&term=maroon+5&limit=20&types=songs returned songs 1-20