I'm using the spotipy library right now to scrape half a million track infos from the spotify API. It worked well with getting the track info and track features, but now I'm trying to get the audio analysis which has much more data per track, but always run into
MaxRetryError: HTTPSConnectionPool(host='api.spotify.com', port=443): Max retries exceeded with url: /v1/audio-analysis/4GYktiEn51I4lc3k6PlN7p (Caused by ResponseError('too many 502 error responses'))
I guess I used it too much since I was able to get the data for the first 2000 songs but now it won't allow me to get a single request anymore.
Do I now just have to wait for a certain time or is there a workaround for this?
That's my first question ever on Stackoverflow so please be kind if I missed out on important points in my question. Thanks for your help!