I just got an ESPN API key, and have just started to try to use it. However, when I try to call it, I get a 403 error, which means the servers think I have already called the data too many times today. To clarify, my limit is 7,500 calls per day. My code is extremely simple, just seeing what data comes back:
import requests
print(requests.get('http://api.espn.com/:version/sports?apikey=:apikey'))
The API key is correct, and for extra detail I am using the Spyder API.