I'm using python requests. I tried both the example requests in the documentation and the requests I constructed myself -
import requests
requests.get('https://isoline.router.hereapi.com/v8/isolines?transportMode=car&range[type]=distance&range[values]=3000&origin=82.8628,135.00&apiKey={YOUR_API_KEY}'
I got the api keys following the steps here
And I keep getting "Response [500]", which the reference says means "Internal Server Error". When I paste the request in the browser, I get "SyntaxError: JSON.parse: unexpected end of data at line 2 column 1 of the JSON data". Any thoughts?